Alexander Baier [2014-05-10 13:27:59 +02:00] wrote: > Mails with a From: header matching user-mail-address are shown > differently in the summary view: > Is there a way to configure multiple addresses? Yes. There are a couple of variables for that. I use a code piece like the one below to set the variables. (let ((addr '("primary.address@somewhere.invalid" "another.address@isp.invalid" "yet.another@address.invalid"))) (setq-default user-mail-address (car addr) message-alternative-emails (regexp-opt (cdr addr) 'words) message-dont-reply-to-names (regexp-opt addr 'words) gnus-ignored-from-addresses message-dont-reply-to-names))