Add missing user-full-name, and set send-mail-function
[~bandali/configs] / spacemacs / .emacs.d / private / aminb / packages.el
index fb336a3..01e9578 100644 (file)
 ;;; Code:
 
 (defconst aminb-packages
-  '(crux writeroom-mode znc
-         ;; mu4e has to be installed manually,
-         ;; and make sure it's in load-path
-         (mu4e :location site)
-         (mu4e-contrib :location site)
-         smtpmail
-         )
+  '(creamsody-theme
+    crux
+    ;; mu4e has to be installed manually,
+    ;; and make sure it's in load-path
+    (mu4e :location site)
+    (mu4e-contrib :location site)
+    smtpmail
+    writeroom-mode
+    znc)
   "The list of Lisp packages required by the aminb layer.")
 
+(defun aminb/init-creamsody-theme ())
+
 (defun aminb/init-crux ()
     (use-package crux
       :defer t
@@ -158,6 +162,7 @@ erc-modified-channels-alist. Should be executed on window change."
             mu4e-sent-folder "/amin/Sent"
             mu4e-drafts-folder "/amin/Drafts"
             mu4e-trash-folder "/amin/Trash"
+            user-full-name "Amin Bandali"
             user-mail-address "amin@aminb.org"
             mu4e-context-policy 'pick-first
             mu4e-contexts
@@ -237,6 +242,7 @@ erc-modified-channels-alist. Should be executed on window change."
           smtpmail-local-domain "aminb.org"
           smtpmail-smtp-server "nix.aminb.org"
           smtpmail-stream-type 'starttls
-          smtpmail-smtp-service 587)))
+          smtpmail-smtp-service 587
+          send-mail-function 'smtpmail-send-it)))
 
 ;;; packages.el ends here