summaryrefslogtreecommitdiff
path: root/modules/profiles
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2024-08-03 16:45:57 +0300
committerAzat Bahawi <azat@bahawi.net>2024-08-03 16:45:57 +0300
commitf19b1ca98cde69a3d58c467d16d6a7ba3d7ffbcd (patch)
tree55b42fbafe17f2efd3696fe994131936920ede14 /modules/profiles
parentffd1ac27a341de0da4bf63a5da1320ee6d132ae0 (diff)
2024-08-03
Diffstat (limited to 'modules/profiles')
-rw-r--r--modules/profiles/email.nix21
1 files changed, 15 insertions, 6 deletions
diff --git a/modules/profiles/email.nix b/modules/profiles/email.nix
index b2ef02f..5dd4712 100644
--- a/modules/profiles/email.nix
+++ b/modules/profiles/email.nix
@@ -75,6 +75,15 @@ in
"azahi@shire.net"
];
realName = my.fullname;
+ signature = {
+ showSignature = "append";
+ text = ''
+ Firstname Lastname | Firstname Lastname | https://azahi.cc/
+
+ Please consider using plain text when replying!
+ >> https://useplaintext.email/#etiquette <<
+ '';
+ };
gpg = {
inherit (my.pgp) key;
signByDefault = false;
@@ -97,18 +106,18 @@ in
passwordCommand = getPassword { path = "email/shire.net/azahi"; };
};
- yahoo = mkAccount rec {
- address = "admin@yahoo.com";
+ yandex = mkAccount rec {
+ address = "username@ya.ru";
aliases = [
address
- "admin@yahoo.com"
+ "username@yandex.ru"
];
realName = "Firstname Lastname";
- flavor = "yahoo.com";
- userName = "admin@yahoo.com";
+ flavor = "yandex.com";
+ userName = "username@yandex.ru";
passwordCommand = getPassword {
- path = "email/yahoo.com/admin";
+ path = "email/yandex.ru/username";
line = 2;
};
};