diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-03-07 17:46:55 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2023-03-07 17:46:55 +0100 |
commit | 0471c01103e163fb3fbfa114200928e6ffaa2693 (patch) | |
tree | ca85913a95fb893c8e14228c9a5af319000cf613 /data | |
parent | 3167ad6e1a20ea98f842bb98f9a9127899ad2eeb (diff) |
Implement Git Send Email
This commit enables the Send Email functionality of Git in order to easily
post patches to mailing lists.
A Git configuration file constructor is prepared in order to compose its content
from multiple Org blocks. The needed packages are declared in a service, and
the initial sendemail configuration is defined.
As a result, it is now possible to post patches directly from Git.
Diffstat (limited to 'data')
-rw-r--r-- | data/git-config | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/git-config b/data/git-config index fa4d5ba..e2d58a5 100644 --- a/data/git-config +++ b/data/git-config @@ -1,3 +1,9 @@ +[sendemail] +smtpencryption = tls +smtpserver = localhost +smtpserverport = 1025 +smtpsslcertpath = "" +smtpuser = marekpasnikowski@protonmail.com [user] name = "Marek Paśnikowski" email = "marekpasnikowski@protonmail.com" |