** \fBNote:\fP Madmutt will not automatically source this file; you must
** explicitly use the ``$source'' command for it to be executed.
*/
- path_t alias_file = m_strdup("~/.madmutt/aliases");
+ path_t alias_file = m_strdup("~/.madmutt/aliases");
/*
** .pp
** assumed that filename is a shell command and input should be read from
** its stdout.
*/
- path_t signature = m_strdup("~/.signature");
+ path_t signature = m_strdup("~/.signature");
+
+ /*
+ ** .pp
+ ** This specifies the file into which your outgoing messages should be
+ ** appended. (This is meant as the primary method for saving a copy of
+ ** your messages, but another way to do this is using the ``$my_hdr''
+ ** command to create a \fTBcc:\fP header field with your email address in it.)
+ ** .pp
+ ** The value of \fI$$record\fP is overridden by the ``$$force_name'' and
+ ** ``$$save_name'' variables, and the ``$fcc-hook'' command.
+ */
+ path_t record = NULL;
void alternates(rx_t rx) {
rx_list_remove(&UnAlternates, rx);
WHERE char *NntpPass;
WHERE char *NewsRc;
#endif
-WHERE char *Outbox;
WHERE char *Pager;
WHERE char *PagerFmt;
WHERE char *PipeSep;
mutt_safe_path (buf, sizeof (buf), adr);
mutt_concat_path(path, pathlen, NONULL(Maildir), buf);
if (!option (OPTFORCENAME) && mx_access (path, W_OK) != 0)
- m_strcpy(path, pathlen, NONULL(Outbox));
+ m_strcpy(path, pathlen, NONULL(MAlias.record));
}
else
- m_strcpy(path, pathlen, NONULL(Outbox));
+ m_strcpy(path, pathlen, NONULL(MAlias.record));
}
mutt_pretty_mailbox (path);
}
** Setting this variable to \fIyes\fP is not generally useful, and thus not
** recommended.
*/
- {"record", DT_PATH, R_NONE, UL &Outbox, ""},
- /*
- ** .pp
- ** This specifies the file into which your outgoing messages should be
- ** appended. (This is meant as the primary method for saving a copy of
- ** your messages, but another way to do this is using the ``$my_hdr''
- ** command to create a \fTBcc:\fP header field with your email address in it.)
- ** .pp
- ** The value of \fI$$record\fP is overridden by the ``$$force_name'' and
- ** ``$$save_name'' variables, and the ``$fcc-hook'' command.
- */
{"reply_regexp", DT_RX, R_INDEX|R_RESORT, UL &ReplyRegexp, "^(re([\\[0-9\\]+])*|aw):[ \t]*"},
/*
** .pp
## no
## operating_system
## quit
+## record
## send_charset
## sendmail
## sendmail_wait
break;
case '<':
- m_strcpy(p, sizeof(p), Outbox);
+ m_strcpy(p, sizeof(p), MAlias.record);
tail = s + 1;
break;