my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

Add mutt conf, remove misleading git smtp pass

+52 -1
-1
.config/git/config
··· 32 32 [sendemail] 33 33 smtpserver = mail.c3f.net 34 34 smtpuser = j3s 35 - smtppass = !"pass c3f" 36 35 smtpencryption = tls 37 36 smtpserverport = 587 38 37 annotate = yes
+52
.config/mutt/muttrc
··· 1 + source 'echo "$( pw=$(pass c3f); echo set my_pass=\"$pw\" )" |' 2 + set sort='reverse-last-date-received' 3 + set imap_user='j3s' 4 + set my_user='j3s@c3f.net' 5 + set spoolfile=imaps://$imap_user:$my_pass@mail.c3f.net/ 6 + set folder="imaps://mail.c3f.net/" 7 + set record='=Sent' 8 + set postponed='=Drafts' 9 + set imap_check_subscribed 10 + set timeout=5 11 + set imap_keepalive=300 12 + set mail_check=5 13 + set realname='Jesse Olson' 14 + set from='j3s@c3f.net' 15 + set use_from=yes 16 + 17 + set smtp_url=smtp://$my_user:$my_pass@mail.c3f.net:587 18 + set ssl_starttls=yes 19 + set ssl_force_tls=yes 20 + set edit_headers=yes 21 + set markers=no 22 + 23 + set index_format="%2C %Z %D %-17.17n (%3l) %s" 24 + set pager_format="%S [%C/%m] %l %n: %s" 25 + set date_format="%Y-%m-%d %l:%M %p" 26 + macro index a '<save-message>=Archive<enter>y' 27 + macro index A '<pipe-message>git am<enter>j' 28 + push '<change-folder> =<enter>' 29 + 30 + color index blue default ~P 31 + # Patch syntax highlighting 32 + color body brightwhite default ^[[:space:]].* 33 + color body yellow default ^(diff).* 34 + color body brightwhite default ^(\s).* 35 + color body cyan default ^(Signed-off-by).* 36 + color body cyan default ^(Docker-DCO-1.1-Signed-off-by).* 37 + color body brightwhite default ^(Cc) 38 + color body yellow default "^diff \-.*" 39 + color body brightwhite default "^index [a-f0-9].*" 40 + color body brightblue default "^---$" 41 + color body white default "^\-\-\- .*" 42 + color body white default "^[\+]{3} .*" 43 + color body green default "^[\+][^\+]+.*" 44 + color body red default "^\-[^\-]+.*" 45 + color body brightblue default "^@@ .*" 46 + color body green default "LGTM" 47 + color body brightmagenta default "-- Commit Summary --" 48 + color body brightmagenta default "-- File Changes --" 49 + color body brightmagenta default "-- Patch Links --" 50 + color body green default "^Merged #.*" 51 + color body red default "^Closed #.*" 52 + color body brightblue default "^Reply to this email.*"