X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=main.c;h=c37eeb40267211b62ddc72ea0defe5f9045b9176;hp=03fd32660991bd1663ac8ed67b994134be1a613d;hb=68a299bc56c990b4833db762e43ce0021d323d25;hpb=047342c2a0526885217e03d06e9b7a715f55b92f diff --git a/main.c b/main.c index 03fd326..c37eeb4 100644 --- a/main.c +++ b/main.c @@ -48,14 +48,14 @@ #endif static const char *ReachingUs = N_("\ -To contact the developers, please mail to .\n\ +To contact the developers, please mail to .\n\ To report a bug, please use the flea(1) utility.\n"); static const char *Notice = N_("\ Copyright (C) 1996-2002 Michael R. Elkins and others.\n\ -Mutt comes with ABSOLUTELY NO WARRANTY; for details type `mutt -vv'.\n\ +Mutt comes with ABSOLUTELY NO WARRANTY; for details type `muttng -vv'.\n\ Mutt is free software, and you are welcome to redistribute it\n\ -under certain conditions; type `mutt -vv' for details.\n"); +under certain conditions; type `muttng -vv' for details.\n"); static const char *Copyright = N_("\ Copyright (C) 1996-2002 Michael R. Elkins \n\ @@ -65,6 +65,7 @@ Copyright (C) 1998-2002 Werner Koch \n\ Copyright (C) 1999-2002 Brendan Cully \n\ Copyright (C) 1999-2002 Tommi Komulainen \n\ Copyright (C) 2000-2002 Edmund Grimley Evans \n\ +Copyright (C) 2004-2005 Andreas Krennmair \n\ \n\ Lots of others not mentioned here contributed lots of code,\n\ fixes, and suggestions.\n\ @@ -95,12 +96,12 @@ static void mutt_usage (void) puts (mutt_make_version ()); puts _( -"usage: mutt [ -nRyzZ ] [ -e ] [ -F ] [ -m ] [ -f ]\n\ - mutt [ -nR ] [ -e ] [ -F ] -Q [ -Q ] [...]\n\ - mutt [ -nR ] [ -e ] [ -F ] -A [ -A ] [...]\n\ - mutt [ -nx ] [ -e ] [ -a ] [ -F ] [ -H ] [ -i ] [ -s ] [ -b ] [ -c ] [ ... ]\n\ - mutt [ -n ] [ -e ] [ -F ] -p\n\ - mutt -v[v]\n\ +"usage: muttng [ -nRyzZ ] [ -e ] [ -F ] [ -m ] [ -f ]\n\ + muttng [ -nR ] [ -e ] [ -F ] -Q [ -Q ] [...]\n\ + muttng [ -nR ] [ -e ] [ -F ] -A [ -A ] [...]\n\ + muttng [ -nx ] [ -e ] [ -a ] [ -F ] [ -H ] [ -i ] [ -s ] [ -b ] [ -c ] [ ... ]\n\ + muttng [ -n ] [ -e ] [ -F ] -p\n\ + muttng -v[v]\n\ \n\ options:\n\ -A \texpand the given alias\n\ @@ -240,6 +241,12 @@ static void show_version (void) "-USE_IMAP " #endif +#ifdef IMAP_EDIT_THREADS + "+IMAP_EDIT_THREADS " +#else + "-IMAP_EDIT_THREADS " +#endif + #ifdef USE_GSS "+USE_GSS " #else @@ -253,6 +260,12 @@ static void show_version (void) "-USE_SSL " #endif +#ifdef USE_GNUTLS + "+USE_GNUTLS " +#else + "-USE_GNUTLS " +#endif + #ifdef USE_SASL "+USE_SASL " #else @@ -435,6 +448,12 @@ static void show_version (void) "-HAVE_GETADDRINFO " #endif +#if USE_HCACHE + "+USE_HCACHE " +#else + "-USE_HCACHE " +#endif + ); #ifdef ISPELL @@ -967,8 +986,6 @@ int main (int argc, char **argv) mutt_folder_hook (folder); - mutt_start_slrnface(); - if((Context = mx_open_mailbox (folder, ((flags & M_RO) || option (OPTREADONLY)) ? M_READONLY : 0, NULL)) || !explicit_folder) { @@ -977,8 +994,6 @@ int main (int argc, char **argv) FREE (&Context); } mutt_endwin (Errorbuf); - - mutt_stop_slrnface(); } exit (0);