Guest User

Untitled

a guest
Dec 29th, 2017
833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. (setq message-citation-line-function 'message-insert-formatted-citation-line)
  2. (setq message-citation-line-format "On %a, %b %d %Y, %f wrote:n")
  3. (setq smtpmail-multi-accounts
  4. (quote
  5. ((yahoo . ("xxxx@yahoo.com"
  6. "smtp.mail.yahoo.com"
  7. 587
  8. "xxxxx@yahoo.com"
  9. nil nil nil nil))
  10. (other . ("xxxxx@other.com"
  11. "smtp.other.com"
  12. 465
  13. "xxxx@other.com"
  14. ssl nil nil nil))
  15. (etc . ("xx@etc.com"
  16. "smtp.etc.com"
  17. 465
  18. "xx@etc.com"
  19. ssl nil nil nil))
  20. ;; ...
  21. )))
  22.  
  23. (setq smtpmail-multi-associations
  24. (quote
  25. (("xxxx@yahoo.com" yahoo)
  26. ("xxx@other.com" other)
  27. ("xx@etc.com" etc)
  28. ;; ....
  29. )))
  30.  
  31. (setq smtpmail-multi-default-account (quote yahoo))
  32. (setq message-send-mail-function 'smtpmail-multi-send-it)
  33.  
  34. (setq mu4e-compose-dont-reply-to-self t)
  35. (setq mu4e-user-mail-address-list '("xxxx@yahoo.com"
  36. "xxx@other.com"
  37. "xx@etc.com"
  38. ;; ...
  39. ))
  40.  
  41. (setq user-full-name "XXXXXX")
  42. (setq user-mail-address "xxx@other.com")
Add Comment
Please, Sign In to add comment