You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As currently written, the "muttrc" gives me the option to source gal, aliases, or mailing_lists, but none of those seem like the appropriate place to override the default value of "from". Maybe "gal"? I'm not sure of its intent.
The text was updated successfully, but these errors were encountered:
set imap_user="$my_username@$my_domain"
set imap_pass=$my_password
You can just override that.
Or create your own settings variables in the "user" and reference those instead.
and then you also want to check the SMTP settings
set realname = $my_realname
set from = "$my_username@$my_domain"
set smtp_pass = $my_password
set hostname = $my_domain
set smtp_url = "smtp://$my_username@[email protected]:587/"
At my company, $my_username is different from my sending email address. Specifically
So, I need a way to override the "from" value.
As currently written, the "muttrc" gives me the option to source gal, aliases, or mailing_lists, but none of those seem like the appropriate place to override the default value of "from". Maybe "gal"? I'm not sure of its intent.
The text was updated successfully, but these errors were encountered: