Gmail is wonderful in that anything sent with that SMTP will be saved in the "sent" folder online; unfortunately, none of my other email servers provide this. My intent, then, is to automatically add a Bcc to whatever email address I'm sending from. but I could use some help in adjusting my .gnus to do this. Here's what I have in my .gnus:
; includes reply-to with whoever an incoming mail was sent to
(setq gnus-posting-styles
'(((header "to" "me1@gmail.com")
(address "me1@gmail.com"))
((header "to" "me2@gmail.com")
(address "me2@gmail.com"))
((header "to" "me@univ.edu")
(address "me@univ.edu"))
((header "to" "me1@mysite.com")
(address "me1@mysite.com"))
((header "to" "me2@mysite.com")
(address "me2@mysite.com"))
((header "cc" "me1@gmail.com")
(address "me1@gmail.com"))
((header "cc" "me2@gmail.com")
(address "me2@gmail.com"))
((header "cc" "me@univ.edu")
(address "me@univ.edu"))
((header "cc" "me1@mysite.com")
(address "me1@mysite.com"))
((header "cc" "me2@mysite.com")
(address "me2@mysite.com"))
))
How can set it to BCC whatever email I am using besides gmail? And is there a way to do this on a new message where the from address is specified at send-time, not at creation-time?