Mutt, send the letter without saving it to the Sent folder

I can send an email and save a copy using Mutt with her own ui.

mutt -s topic receiver

This will invoke the mutt interface for editing and sending mail. First, it will be uploaded to the imap server and will send an email through the SMTP server. There is an Fcc field in the header.

But when I use a clean command line to send mail, say:

mutt -s topic receiver < foo

Mail was sent successfully, but a copy on my server was not sent. I check the debug log, mail is not loaded on the imap server at all, it just goes through the smtp server.

I tried using my_hdr, but Fcc is not supported for installation.

fcc-hook is also used, not use

+3
source share
2 answers

set record=+accountname/sent

.muttrc? , accountname - , , sent - , . .muttrc

set record = +mec07/"Sent Items"

, "". imap .

+2

.

docs , , set copy = no, . , , "".

~/.muttrc , ( Dovecot):

#set copy = no           
set postponed = "=Drafts"
set record = "=Sent"     
0

All Articles