summaryrefslogtreecommitdiffstats
path: root/send.c
AgeCommit message (Collapse)Author
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-29Don't use IMAP folders for FCCs when sending messages in batch mode.Thomas Roessler
This is _not_ Brendan's patch, which may be included later.
1999-12-13Adding the envelope_from option.Thomas Roessler
1999-11-23Adding an fcc_clear option for unencrypted and unsigned FCCs.Thomas Roessler
1999-11-07Rewriting lots of the recvattach code.Thomas Roessler
1999-11-04IMAP postpone changes from Byrial Jensen.Thomas Roessler
1999-10-29Don't check the number of postponed messages every time the statusThomas Roessler
line is updated - this gets quite slow when used with slow IMAP connections.
1999-10-16Fix Debian bug #47408: When the postponed folder is a maildir,Thomas Roessler
messages should only be written to the _new_ subdirectory.
1999-09-30Add a resend-message function (similar to the _old_ edit-message),Thomas Roessler
and redo large parts of mutt_prepare_edit_message (now mutt_prepare_template).
1999-09-30[unstable] Re-add in-reply-to. This time with a suitable default. #-\Thomas Roessler
1999-09-02A new edit-message feature, giving the raw message in an editor.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-08-04Various fixes; documentation.Thomas Roessler
1999-07-20Use $from for resent-from headers when bouncing messages.Thomas Roessler
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-20Remove the $in_reply_to configuration variable and always use theThomas Roessler
message-ID for that header.
1999-06-09Give reverse_name precedence over my_hdr From:Thomas Roessler
1999-06-03Experimental: Use OPTWEED for _all_ header weeding throughout mutt.Thomas Roessler
1999-05-31Minor bug-fixes.Thomas Roessler
1999-05-03Various fixes.Thomas Roessler
1999-04-22Fix FCC-related SNAFU in the ci_send_message() spaghetti.mutt-0-96-2-slightly-post-releaseThomas Roessler
1999-03-30resort headers when forward-decoding them with weed switched on.Thomas Roessler
1999-03-15Cleanly handle fcc when the user unsets it and the message isThomas Roessler
postponed.
1999-03-09handler.c: Properly handle message/external-body expiry.Thomas Roessler
menu.c: Small fix from Liviu. send.c: Honor confirm_create for FCCs. cvs: ----------------------------------------------------------------------
1999-02-26Adding pgp_replyencrypt.Thomas Roessler
1999-02-18Introduce $honor_followup_to. The user will now be asked whether heThomas Roessler
wants to honor mail-followup-to or not.
1999-02-17- Makefile.am: Fix the dist target to include all necessary files.Thomas Roessler
- po/fr.po: New French translation. (-> stable!) - Add the new options to Muttrc.in. - regex.c, configure.in: include config.h from regex.c, and handle alloca in a more intelligent way than before. (Currently, we just mis-handle it.) Port this to stable and test it! - po/cs.po: update cs.po. - po/de.po, po/nl.po: updated versions from Roland and Boris. - pager.c: Vikas' grok_ansi fix. - po/Makefile.in.in: keymap_defs is always in po/.. - from Lars Hecking.
1999-02-10patch.mutt-0.95.1i.ld.signals.1: A major redesign of how childThomas Roessler
processes are invoked. From Liviu.
1999-02-02Merging the external character set patch into unstable.Thomas Roessler
Additionally, this change introduces a M_CHARCONV state flag which gives us some more control about when character set conversions are actually done. Current versions of mutt would happily apply character set conversions when, e.g., saving a text/plain attachment to a file. (We had at least one corrupt russing translation file due to this mis-feature.) Additionally, we clean up some of the character set related code in handler.c. Most of that is now done by the decoder functions in charset.c.
1999-01-13Qualify addresses before passing them to mixmaster.Thomas Roessler
1999-01-13Clean up dependencies: remailer.h is no longer included by mutt.h,Thomas Roessler
and the mix_* prototypes can once again go to remailer.h.
1999-01-13A first take at adding a mixmaster front-end to mutt. Don't worry,Thomas Roessler
it's optional. ;-)
1999-01-11When decode-forwarding messages with message/Rfc822 attachments,Thomas Roessler
mutt should weed the attachments' headers according to the setting of $forward_weed.
1999-01-07Get rid of RCS ids in source files. They are getting in our wayThomas Roessler
when merging changes.
1999-01-04[stable] When sending a message in batch mode failed, mutt wouldThomas Roessler
dump core. Patch from Byrial Jensen.
1998-11-23From Byrial:Thomas Roessler
I don't think that the match-all pattern modifier works as can be expected from a logical point of view. The attached patch will make it work as I expect it to work: - It works on all patterns which explicit or implicit use address lists: ~c, ~C, ~e, ~f, ~l, ~L, ~p, ~P, and ~t. (It didn't work with ~l before). - It works such that a modified pattern always match, unless there is at least one address in at least one of the referenced lists that it doesn't match.
1998-11-23Introduce a new option $reply_self. From Vikas.Thomas Roessler
1998-11-19Hack around problems with multi-valued Reply-To headers. FromThomas Roessler
Roland Rosenfeld.
1998-11-10Fix the $metoo option's behaviour.Thomas Roessler
1998-11-10Introduce or rewrite mutt_{str*cmp,strlen} and use them all over theThomas Roessler
place. If there are still segmentation faults due to missing NONULLs over, they are gone now.
1998-11-09Fix a group reply problem.Thomas Roessler
1998-10-28Don't try to recall a postponed message when we are given a template.Thomas Roessler
1998-10-28Add a $forward_weed option which controls header weeding whenThomas Roessler
decode-forwarding messages.
1998-10-28if reply-to points to the address on the from header, use the fromThomas Roessler
header's value for composing a reply's recipient list, not the reply-to header.
1998-10-27Move some code around.Thomas Roessler
1998-10-27Preserve FCC headers when postponing. From Vikas.Thomas Roessler
1998-10-22Undo some superfluous changes. Pointed out by V.A.Thomas Roessler
1998-10-22- Preserve certain headers' values when recallling a postponedThomas Roessler
message. TBD: Fcc. - Rename mutt_edit_message() to mutt_prepare_edit_message() since that's what that function actually does.
1998-10-16Fix a segmentation fault when OPT_RECALL is ask-something.Thomas Roessler