1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00
home-manager/tests/modules/programs/git/git-with-msmtp-expected.conf
Léo DUBOIN 2e339cc6da
git: sendemail: add realName inside From field
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, whenever applicable.

Signed-off-by: Léo DUBOIN <leo@duboin.com>
2024-04-26 23:35:24 +02:00

16 lines
379 B
Plaintext

[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 = "hm@example.com"
smtpServer = "@msmtp@/bin/msmtp"
[user]
email = "hm@example.com"
name = "H. M. Test"