summaryrefslogtreecommitdiffstats
path: root/init.c
AgeCommit message (Collapse)Author
2001-07-03Unified buffer handling, from Brendan Cully.Thomas Roessler
2001-06-11Use the EMAIL environment variable as the default for $from.Thomas Roessler
2001-06-07Don't add empty strings to lists. From Thomas ParmelanThomas Roessler
<tom@proxad.net>.
2001-06-04Clean up the sharedir mess. From Lars Hecking.Thomas Roessler
2001-04-26Add ascii_strcasecmp() and ascii_strncasecmp() functions which doThomas Roessler
locale-independent and case-insensitive string comparisons. Needed for mutt to work in iso-8859-9 environments, where tolower('I') != 'i'.
2001-01-08Fix and/or check more fishy code.Thomas Roessler
2001-01-08Going through possible security problems with a fine comb. If youThomas Roessler
want to help, check out the current source, and run check_sec.sh.
2000-11-03Make error reporting more verbose.Thomas Roessler
2000-10-10Vsevolod Volkov's POP mailbox patch.Thomas Roessler
2000-10-04Adding support for Netscape's (pardon, Mozilla's) SSLThomas Roessler
implementation. From Michael Elkins.
2000-09-28Document the --without-wc-funcs switch to configure, and clean upThomas Roessler
the code to set the character set from nl_langinfo from EGE.
2000-09-05Clean up some warning messages. From Bob Bell.Thomas Roessler
2000-09-01Don't mutt_pretty_mailbox when setting variables, since this mayThomas Roessler
badly interact with non-default settings. Suggested by Byrial Jensen.
2000-08-30SSL unification patch from Vsevolod.Thomas Roessler
2000-08-10Tell mutt about the MAILDIR environment variable DJB talks about inThomas Roessler
maildir (5).
2000-08-09Minor portability and compilation fixes.Thomas Roessler
2000-08-08* handles expunged messages better. Previously mutt's state was onlyThomas Roessler
updated when syncing the mailbox. This was the reason for Bob Bell's segfault when manipulating mailboxes with multiple simultaneous clients. * makes a small adjustment for Sam's weird Courier server, which returns an OK FETCH completed response even when FETCH fails. I should probably report that behaviour to him as a bug, though. * renames IMAP_REOPEN_PENDING to IMAP_EXPUNGE_PENDING * gets rid of the _("Closing mailbox...") message, which was obscuring the status updates. * clears some spurious mutt_clear_error calls in imap_cmd_finish. * makes socket reads and writes check that they have an open connection. Shouldn't be necessary (and such calls are logged), but can happen currently. * Some SASL vs regular authenticator tweaks in the imap Makefile. (From Brendan Cully.)
2000-07-19IMAP socket moves by Brendan Cully, with a fix from TommiThomas Roessler
Komulainen, and most likely based on input from Vsevolod Voykov (sp?).
2000-06-09Fix some typos in the nl_langinfo stuff.Thomas Roessler
2000-06-08Fix up the value returned by nl_langinfo(CODESET).Thomas Roessler
2000-05-20Add mutt_gecos_name function which centrally handles the GECOSThomas Roessler
processing.
2000-05-17Small fix to mutt_set_default().Thomas Roessler
2000-05-16Use nl_langinfo's return value as the default for $charset.Thomas Roessler
2000-05-16More default setting. This can easily be done much cleaner than theThomas Roessler
last version of the patch.
2000-05-16Hack: mutt_restore_default() now stores the latest value of aThomas Roessler
variable as it's default if there was no default before. The code in question is executed precisely once: when mutt_restore_default() is invoked from mutt_init().
2000-05-09Edmund Grimley Evans' UTF-8 patch.Thomas Roessler
2000-04-22Handle sort_aux="threads" somewhat different, and probably moreThomas Roessler
safely. Problem and principle of fix noted by Gero Treuner and Michael Tatge <Michael.Tatge@studserv.uni-stuttgart.de>.
2000-03-29Various little patches from Gero Treuner.Thomas Roessler
2000-03-03The FSF apparently has moved.Thomas Roessler
2000-02-16Permit empty my_hdrs. Suggested by Edmund Grimley Evans.Thomas Roessler
2000-02-15Byrial Jensen's unhook command patch.Thomas Roessler
2000-02-10PGP-cleanup patch from Roland Rosenfeld. Thanks!Thomas Roessler
2000-02-03Add a comment concerning muttbug.sh.Thomas Roessler
2000-02-02Make the parsing of integers moreThomas Roessler
2000-01-12It was impossible to unset a string. If you did "unset realname" itThomas Roessler
would just print out the value of the string. Attached is the fix.
2000-01-10Add (and use) a function mutt_str_replace, which essentiallyThomas Roessler
replaces the sequence: safe_free (&s); s = safe_strdup (t);
2000-01-06Update copyright notices for unstable.Thomas Roessler
1999-12-09Tommi Komulainen's multiple IMAP usernames patch.Thomas Roessler
1999-11-17Tommi Komulainen's IMAP/SSL support patches.Thomas Roessler
1999-09-05Fix "unignore *": We must not add "*" to the unignore list.Thomas Roessler
1999-08-15Various changes added over the last week:Thomas Roessler
- $delete_untag - creation of "application/pgp" messages - an attempt to fix prepare. - Browser format changes
1999-07-20Fix value completion for DT_ADDR variables. While we are on it,Thomas Roessler
proper quoting is added.
1999-07-20As Aaron Schrab noted, patch-0.95.6.tlr.reverse_name.1 broke the useThomas Roessler
of my_hdr from send-hooks. This patch introduces a new variable $from which can be used to use a default sender address; to make this possible, a new variable class DT_ADDR is defined. We now have the following algorithm for determining the from address: - $from is used as the default from address, if defined. Otherwise, the local user name and (if the user wishes so) the local domain are used. - This address can be overridden by $reverse_name, if set. - Now, send-hooks are evaluated. - Afterwards, user headers are evaluated. In this step, the from header can be overridden using my_hdr From:. - When there is no real name, $realname is used for it. Note that, when the default from header is used and $from defines a real name, it takes precedence over $realname.
1999-07-01Various patches from last week, including:Thomas Roessler
- new mh/maildir access code. - subscribe/unsubscribe - various fixes.
1999-06-08- Add a $weed option.Thomas Roessler
- Add out-of-band reporting of signature status.
1999-06-03Experimental: New PGP invocation interface. The invocations are doneThomas Roessler
through formats, so all this should fit more cleanly into mutt now.
1999-06-02Major cutting & pasting: We now have a "real" library in lib.c whichThomas Roessler
can be linked against external programs without much effort.
1999-03-25Roland's sort_keys patch.Thomas Roessler
1999-01-07Vikas' set_boolean patch.Thomas Roessler
1999-01-07Get rid of RCS ids in source files. They are getting in our wayThomas Roessler
when merging changes.