You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

367 lines
13 KiB

  1. #!/bin/sh
  2. prefix="/usr/local"
  3. maildir="${XDG_DATA_HOME:-$HOME/.local/share}/mail"
  4. muttshare="$prefix/share/mutt-wizard"
  5. cachedir="${XDG_CACHE_HOME:-$HOME/.cache}/mutt-wizard"
  6. muttrc="${XDG_CONFIG_HOME:-$HOME/.config}/mutt/muttrc"
  7. accdir="${XDG_CONFIG_HOME:-$HOME/.config}/mutt/accounts"
  8. msmtprc="${XDG_CONFIG_HOME:-$HOME/.config}/msmtp/config"
  9. msmtplog="${XDG_CONFIG_HOME:-$HOME/.config}/msmtp/msmtp.log"
  10. mbsyncrc="${MBSYNCRC:-$HOME/.mbsyncrc}"
  11. mpoprc="${XDG_CONFIG_HOME:-$HOME/.config}/mpop/config"
  12. alias mbsync='mbsync -c "$mbsyncrc"'
  13. for x in "/etc/ssl/certs/ca-certificates.crt" "/etc/pki/tls/certs/ca-bundle.crt" "/etc/ssl/ca-bundle.pem" "/etc/pki/tls/cacert.pem" "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" "/etc/ssl/cert.pem" "/usr/local/share/ca-certificates/"; do
  14. [ -f "$x" ] && sslcert="$x" && break
  15. done || { echo "CA Certificate not found. Please install one or link it to /etc/ssl/certs/ca-certificates.crt" && exit 1 ;}
  16. checkbasics() { command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2"
  17. PASSWORD_STORE_DIR="${PASSWORD_STORE_DIR:-$HOME/.password-store}"
  18. [ -r "$PASSWORD_STORE_DIR/.gpg-id" ] &&
  19. "$GPG" --list-secret-keys "$(cat "$PASSWORD_STORE_DIR/.gpg-id")" >/dev/null 2>&1 || {
  20. echo "First run \`pass init <yourgpgemail>\` to set up a password archive."
  21. echo "(If you don't already have a GPG key pair, first run \`$GPG --full-generate-key\`.)"
  22. exit 1 ;} ;}
  23. getaccounts() { accounts="$(find -L "$accdir" -type f 2>/dev/null | grep -o "[0-9]-.*.muttrc" | sed "s/-/: /;s/\.muttrc$//" | sort -n)" ;}
  24. list() { getaccounts && [ -n "$accounts" ] && echo "$accounts" || exit 1 ;}
  25. prepmsmtp() { echo "account $fulladdr
  26. host $smtp
  27. port ${sport:-587}
  28. from $fulladdr
  29. user $login
  30. passwordeval \"pass $fulladdr\"
  31. auth ${auth:-on}
  32. ${tlsline:-tls on}
  33. tls_trust_file $sslcert
  34. logfile $msmtplog
  35. " >> "$msmtprc"
  36. # On Ubuntu/Debian, a link is needed since they use an older version.
  37. command -V apt-get >/dev/null 2>&1 && ln -s "$msmtprc" "$HOME/.msmtprc" 2>/dev/null
  38. }
  39. prepmbsync() { mkdir -p "${mbsyncrc%/*}"
  40. echo "
  41. IMAPStore $fulladdr-remote
  42. Host $imap
  43. Port ${iport:-993}
  44. User $login
  45. PassCmd \"pass $fulladdr\"
  46. AuthMechs LOGIN
  47. SSLType ${imapssl:-IMAPS}
  48. CertificateFile $sslcert
  49. MaildirStore $fulladdr-local
  50. Subfolders Verbatim
  51. Path ${XDG_DATA_HOME:-$HOME/.local/share}/mail/$fulladdr/
  52. Inbox ${XDG_DATA_HOME:-$HOME/.local/share}/mail/$fulladdr/${inbox:-INBOX}
  53. Channel $fulladdr
  54. Expunge Both
  55. Master :$fulladdr-remote:
  56. Slave :$fulladdr-local:
  57. Patterns * !\"[Gmail]/All Mail\"
  58. Create Both
  59. SyncState *
  60. MaxMessages ${maxmes:-0}
  61. ExpireUnread no
  62. # End profile
  63. " >> "$mbsyncrc" ;}
  64. prepmpop() { mkdir -p "${mpoprc%/*}"
  65. echo "
  66. account $fulladdr
  67. tls on
  68. user $login
  69. host $imap
  70. delivery maildir ${XDG_DATA_HOME:-$HOME/.local/share}/mail/$fulladdr/${inbox:-INBOX}
  71. passwordeval pass $fulladdr
  72. " >> "$mpoprc" ;}
  73. prepmutt() { echo "# vim: filetype=neomuttrc
  74. # muttrc file for account $fulladdr
  75. set realname = \"$realname\"
  76. set from = \"$fulladdr\"
  77. set sendmail = \"msmtp -a $fulladdr\"
  78. alias me $realname <$fulladdr>
  79. set folder = \"$folder\"
  80. set header_cache = $cachedir/$fulladdr/headers
  81. set message_cachedir = $cachedir/$fulladdr/bodies
  82. set mbox_type = Maildir
  83. set hostname = \"$hostname\"
  84. $extra
  85. bind index,pager gg noop
  86. bind index,pager g noop
  87. bind index,pager M noop
  88. bind index,pager C noop
  89. bind index gg first-entry
  90. unmailboxes *
  91. unalternates *
  92. unset signature
  93. $synccmd
  94. " > "$accdir/$idnum-$fulladdr.muttrc"
  95. [ ! -f "$muttrc" ] && echo "# vim: filetype=neomuttrc" > "$muttrc"
  96. ! grep -q "^source.*mutt-wizard.muttrc" "$muttrc" && echo "source $muttshare/mutt-wizard.muttrc" >> "$muttrc"
  97. ! grep "^source.*.muttrc" "$muttrc" | grep -qv "$muttshare/mutt-wizard.muttrc" && echo "source $accdir/$idnum-$fulladdr.muttrc" >> "$muttrc"
  98. echo "macro index,pager i$idnum '<sync-mailbox><enter-command>source $accdir/$idnum-$fulladdr.muttrc<enter><change-folder>!<enter>;<check-stats>' \"switch to $fulladdr\"" >> "$muttrc"
  99. }
  100. getprofiles() { \
  101. mkdir -p "${muttrc%/*}" "$accdir" "$cachedir/$fulladdr/bodies" "${XDG_CONFIG_HOME:-$HOME/.config}/msmtp"
  102. unset msmtp_header msmtp_profile mutt_profile mbsync_profile
  103. case "$iport" in
  104. 1143) imapssl=None ;;
  105. 143) imapssl=STARTTLS ;;
  106. esac
  107. case "$type" in
  108. online) folder="imaps://$login@$imap:${iport:-993}"
  109. extra="set imap_user = \"$login\"
  110. set imap_pass = \"\`pass $fulladdr\`\"
  111. set ssl_starttls = yes
  112. set ssl_force_tls = yes"
  113. ;;
  114. pop) synccmd="macro index o \"<shell-escape>mpop $fulladdr<enter>\" \"run mpop to get $fulladdr's mail\""
  115. folder="$maildir/$fulladdr"
  116. prepmpop ;;
  117. *) synccmd="macro index o \"<shell-escape>mbsync $fulladdr<enter>\" \"run mbsync to sync $fulladdr\""
  118. folder="$maildir/$fulladdr"
  119. prepmbsync ;;
  120. esac
  121. prepmsmtp
  122. prepmutt
  123. prepnotmuch # Create a notmuch config file if not present already.
  124. }
  125. parsedomains(){ serverinfo="$(grep "^${fulladdr#*@}" "$muttshare/domains.csv" 2>/dev/null)"
  126. [ -z "$serverinfo" ] && serverinfo="$(grep "$(echo "${fulladdr#*@}" | sed "s/\.[^\.]*$/\.\\\*/")" "$muttshare/domains.csv" 2>/dev/null)"
  127. IFS=, read -r service imapsugg iportsugg smtpsugg sportsugg <<EOF
  128. $serverinfo
  129. EOF
  130. imap="${imap:-$imapsugg}"
  131. smtp="${smtp:-$smtpsugg}"
  132. sport="${sport:-$sportsugg}"
  133. iport="${iport:-$iportsugg}"
  134. }
  135. delete() { if [ -z "${fulladdr+x}" ]; then
  136. echo "Select the account you would like to delete (by number):"
  137. list || exit 1
  138. read -r input
  139. match="^$input:"
  140. else
  141. match=" $fulladdr$"
  142. getaccounts
  143. fi
  144. fulladdr="$(echo "$accounts" | grep "$match" | cut -f2 -d' ')"
  145. [ -z "$fulladdr" ] && echo "$fulladdr is not a valid account name." && return 1
  146. sed -ibu "/IMAPStore $fulladdr-remote$/,/# End profile/d" "$mbsyncrc" 2>/dev/null ; rm -f "$mbsyncrc"bu
  147. rm -rf "${cachedir:?}/${fulladdr:?}" "$accdir/"[1-9]"-$fulladdr.muttrc"
  148. sed -ibu "/[0-9]-$fulladdr.muttrc/d" "$muttrc" 2>/dev/null; rm -f "$muttrc"bu
  149. sed -ibu "/account $fulladdr$/,/^\(\s*$\|account\)/d" "$msmtprc" 2>/dev/null; rm -f "$msmtprc"bu
  150. sed -ibu "/account $fulladdr$/,/^\(\s*$\|account\)/d" "$mpoprc" 2>/dev/null; rm -f "$mpoprc"bu
  151. pass rm -f "$fulladdr" >/dev/null 2>&1
  152. [ -n "${purge+x}" ] && rm -rf "${maildir:?}/${fulladdr:?}"
  153. for file in "$msmtprc" "$mbsyncrc" "$mpoprc"; do
  154. sed -ibu 'N;/^\n$/D;P;D;' "$file" 2>/dev/null; rm -f "$file"bu
  155. done
  156. }
  157. askinfo() { \
  158. [ -z "$fulladdr" ] && echo "Give the full email address to add:" &&
  159. read -r fulladdr
  160. while ! echo "$fulladdr" | grep -qE "^.+@.+\.[A-Za-z]+$"; do
  161. echo "\`$fulladdr\` is not a valid email address. Please retype the address:"
  162. read -r fulladdr
  163. done
  164. getaccounts; echo "$accounts" | grep -q "\s$fulladdr$" 2>/dev/null &&
  165. { echo "$fulladdr has already been added" && exit 1 ;}
  166. { [ -z "$imap" ] || [ -z "$smtp" ] ;} && parsedomains
  167. [ -z "$imap" ] && echo "Give your email server's IMAP address (excluding the port number):" &&
  168. read -r imap
  169. [ -z "$smtp" ] && echo "Give your email server's SMTP address (excluding the port number):" &&
  170. read -r smtp
  171. [ "$sport" = 465 ] && tlsline="tls_starttls off"
  172. [ -z "$realname" ] && realname="${fulladdr%%@*}"
  173. hostname="$(echo "$fulladdr" | cut -d @ -f 2)"
  174. login="${login:-$fulladdr}"
  175. if [ -n "${password+x}" ]; then
  176. createpass
  177. else
  178. getpass
  179. fi
  180. }
  181. createpass() { echo "$password" > "$PASSWORD_STORE_DIR/$fulladdr"
  182. "$GPG" -qer "$(cat "$PASSWORD_STORE_DIR/.gpg-id")" "$PASSWORD_STORE_DIR/$fulladdr"
  183. rm -f "$PASSWORD_STORE_DIR/$fulladdr" ;}
  184. getpass() { while : ; do pass rm -f "$fulladdr" >/dev/null 2>&1
  185. pass insert -f "$fulladdr" && break; done ;}
  186. formatShortcut() { toappend="$toappend
  187. macro index,pager g$1 \"<change-folder>=$3<enter>\" \"go to $2\"
  188. macro index,pager M$1 \";<save-message>=$3<enter>\" \"move mail to $2\"
  189. macro index,pager C$1 \";<copy-message>=$3<enter>\" \"copy mail to $2\"" ;}
  190. setBox() { toappend="$toappend
  191. set $1 = \"+$2\"" ;}
  192. getboxes() { if [ -n "${force+x}" ] ; then
  193. mailboxes="$(printf "INBOX\\nDrafts\\nJunk\\nTrash\\nSent\\nArchive")"
  194. else
  195. info="$(curl --location-trusted -s -m 5 --user "$login:$(pass "$fulladdr")" --url "${protocol:-imaps}://$imap:${iport:-993}")"
  196. [ -z "$info" ] && echo "Log-on not successful." && return 1
  197. mailboxes="$(echo "$info" | grep -v HasChildren | sed "s/.*\" //;s/\"//g" | tr -d ' ')"
  198. fi
  199. [ "$type" = "pop" ] && mailboxes="INBOX"
  200. getaccounts; for x in $(seq 1 9); do echo "$accounts" | grep -q "^$x:" || { export idnum="$x"; break ;}; done
  201. toappend="mailboxes $(echo "$mailboxes" | sed "s/^/\"=/;s/$/\"/" | paste -sd ' ' - )"
  202. IFS=$'\n'
  203. for x in $mailboxes; do
  204. case "$x" in
  205. *[Ss][Ee][Nn][Tt]*) setBox record "$x"; formatShortcut s sent "$x" ;;
  206. *[Dd][Rr][Aa][Ff][Tt][Ss]*) setBox postponed "$x"; formatShortcut d drafts "$x" ;;
  207. *[Tt][Rr][Aa][Ss][Hh]*) formatShortcut t trash "$x"; setBox trash "$x" ;;
  208. *[Jj][Uu][Nn][Kk]*) formatShortcut j junk "$x" ;;
  209. *[Aa][Rr][Cc][Hh][Ii][Vv][Ee]*) formatShortcut a archive "$x" ;;
  210. *[Ss][Pp][Aa][Mm]*) formatShortcut S spam "$x" ;;
  211. *[Ii][Nn][Bb][Oo][Xx]) formatShortcut i inbox "$x"; setBox spoolfile "$x" inbox="$x" ;;
  212. esac
  213. done
  214. unset IFS
  215. }
  216. finalize() { echo "$toappend" >> "$accdir/$idnum-$fulladdr.muttrc"
  217. [ "$type" != "online" ] && echo "$mailboxes" | xargs -I {} mkdir -p "$maildir/$fulladdr/{}/cur" "$maildir/$fulladdr/{}/tmp" "$maildir/$fulladdr/{}/new"
  218. echo "$fulladdr (account #$idnum) added successfully."
  219. command -V urlview >/dev/null 2>&1 && [ ! -f "$HOME/.urlview" ] && echo "COMMAND \$BROWSER" > "$HOME/.urlview"
  220. return 0 ;}
  221. prepnotmuch() { \
  222. [ -z "$NOTMUCH_CONFIG" ] && NOTMUCH_CONFIG="$HOME/.notmuch-config"
  223. [ -f "$NOTMUCH_CONFIG" ] && return 0
  224. nmbasic="[database]
  225. path=$maildir
  226. [user]
  227. name=$realname
  228. primary_email=$fulladdr
  229. [new]
  230. tags=unread;inbox;
  231. ignore=.mbsyncstate;.uidvalidity
  232. [search]
  233. exclude_tags=deleted;spam;
  234. [maildir]
  235. synchronize_flags=true
  236. [crypto]
  237. gpg_path=$GPG"
  238. echo "$nmbasic" > "$NOTMUCH_CONFIG" ;}
  239. togglecron() { cron="$(mktemp)"
  240. crontab -l > "$cron"
  241. if grep -q mailsync "$cron"; then
  242. echo "Removing automatic mailsync..."
  243. sed -ibu /mailsync/d "$cron"; rm -f "$cron"bu
  244. else
  245. echo "Adding automatic mailsync every ${cronmin:-10} minutes..."
  246. echo "*/${cronmin-10} * * * * $prefix/bin/mailsync" >> "$cron"
  247. fi &&
  248. crontab "$cron"; rm -f "$cron" ;}
  249. setact() { if [ -n "${action+x}" ] && [ "$action" != "$1" ]; then
  250. echo "Running $1 with $action..."
  251. echo "Incompatible options given. Only one action may be specified per run."
  252. return 1
  253. else
  254. action="$1"
  255. fi; }
  256. mwinfo() { cat << EOF
  257. mw: mutt-wizard, auto-configure email accounts for mutt
  258. including downloadable mail with \`isync\`.
  259. Main actions:
  260. -a your@email.com Add an email address
  261. -l List email addresses configured
  262. -d Remove an already added address
  263. -D your@email.com Force remove account without confirmation
  264. -y your@email.com Sync mail for account by name
  265. -Y Sync mail for all accounts
  266. -t number Toggle automatic mailsync every <number> minutes
  267. -T Toggle automatic mailsync
  268. Options allowed with -a:
  269. -u Account login name if not full address
  270. -n "Real name" to be on the email account
  271. -i IMAP/POP server address
  272. -I IMAP/POP server port
  273. -s SMTP server address
  274. -S SMTP server port
  275. -x Password for account (recommended to be in double quotes)
  276. -p Install for a Protonmail account.
  277. -P Add for a POP server instead of IMAP.
  278. -X Delete an account's local email too when deleting.
  279. -o Configure address, but keep mail online.
  280. -f Assume typical English mailboxes without attempting log-on.
  281. NOTE: Once at least one account is added, you can run
  282. \`mbsync -a\` to begin downloading mail.
  283. To change an account's password, run \`pass edit your@email.com\`.
  284. EOF
  285. }
  286. while getopts "fpPXlhodTYD:y:i:I:s:S:u:a:n:x:m:t:" o; do case "${o}" in
  287. l) setact list || exit 1 ;;
  288. d) setact delete || exit 1 ;;
  289. D) setact delete || exit 1 ; fulladdr="$OPTARG" ;;
  290. y) setact sync || exit 1 ; fulladdr="$OPTARG" ;;
  291. Y) setact sync || exit 1 ;;
  292. a) setact add || exit 1 ; fulladdr="$OPTARG" ;;
  293. i) setact add || exit 1 ; imap="$OPTARG" ;;
  294. I) setact add || exit 1 ; iport="$OPTARG" ;;
  295. s) setact add || exit 1 ; smtp="$OPTARG" ;;
  296. S) setact add || exit 1 ; sport="$OPTARG" ;;
  297. u) setact add || exit 1 ; login="$OPTARG" ;;
  298. n) setact add || exit 1 ; realname="$OPTARG" ;;
  299. m) setact add || exit 1 ; maxmes="$OPTARG" ;;
  300. o) setact add || exit 1 ; type="online" ;;
  301. P) setact add || exit 1 ; type="pop"; protocol="pop3s" ; iport="${iport:-995}" ;;
  302. f) setact add || exit 1 ; force=True ;;
  303. x) setact add || exit 1 ; password="$OPTARG" ;;
  304. X) setact delete || exit 1 ; purge=True ;;
  305. t) setact toggle || exit 1 ; cronmin="$OPTARG" ;;
  306. T) setact toggle || exit 1 ;;
  307. p) echo "NOTE: Protonmail users must install and configure Protonmail Bridge first for the first sync to work."
  308. protocol="imap"
  309. imap="127.0.0.1"
  310. iport="1143"
  311. smtp="127.0.0.1"
  312. sport="1025"
  313. auth="login"
  314. tlsline="tls_fingerprint $(msmtp --serverinfo --host=$smtp --port=$sport --tls --tls-certcheck=off | awk '/SHA256:/ {print $2}')"
  315. setact add || exit 1
  316. ;;
  317. *) mwinfo; exit 1 ;;
  318. esac done
  319. case "$action" in
  320. list) list ;;
  321. add) checkbasics && askinfo && getboxes && getprofiles && finalize ;;
  322. delete) delete ;;
  323. sync) mailsync $fulladdr ;;
  324. toggle) togglecron ;;
  325. *) mwinfo; exit 1 ;;
  326. esac