On Fri, May 14, 2021 at 02:22:43PM -0600, Gregory Anders <g...@gpanders.com> wrote:
> Hi all, > > The Date: header that Mutt adds to my sent emails includes my time zone > offset. I would prefer to have the header present the time of my email in > UTC time (offset 0). I wasn't able to find a setting that controls this. In > fact, I'm not sure how Mutt is getting my time zone at all, since I'm quite > sure I haven't set it anywhere in my configuration. > > Is this possible to do? If not I may take a stab at creating a patch. > > Thanks, > Greg hi, your default timezone would probably have been selected when your operating system was installed. but it can be overridden easily. just create a shell function like this: mutt() { TZ=UTC /usr/bin/mutt "$@"; } and put it in a shell startup file. cheers, raf