mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
2b87a11125
We currently have no way of specifying the sender's name inside the From field, making a patch sent through `git send-email` appear as coming from "xxx@domain.com". In this commit we make this field follow the standard realName <email> format.
15 lines
392 B
Text
15 lines
392 B
Text
[sendemail "hm-account"]
|
|
from = "H. M. Test Jr. <hm@example.org>"
|
|
smtpEncryption = "tls"
|
|
smtpServer = "smtp.example.org"
|
|
smtpSslCertPath = "/etc/ssl/certs/ca-certificates.crt"
|
|
smtpUser = "home.manager.jr"
|
|
|
|
[sendemail "hm@example.com"]
|
|
envelopeSender = "auto"
|
|
from = "H. M. Test <hm@example.com>"
|
|
smtpServer = "@msmtp@/bin/msmtp"
|
|
|
|
[user]
|
|
email = "hm@example.com"
|
|
name = "H. M. Test"
|