32 lines
982 B
Org Mode
32 lines
982 B
Org Mode
#+TITLE: Personal Information (Sample)
|
|
All variables and settings that are personal information about the user is put here, for privacy reasons.
|
|
This is the sample configuration, so the Name of the user in this is sample is /Jamie Doe/, with user name ~jamie~, with their email in the ~example.com~ server.
|
|
|
|
* Home Dir
|
|
#+begin_src emacs-lisp
|
|
(defvar user-home-path "/home/jamie"
|
|
"default fallback home dir path")
|
|
#+end_src
|
|
|
|
* Email
|
|
not putting email information feels safer...
|
|
|
|
** Email credentials
|
|
#+begin_src emacs-lisp
|
|
(setq user-mail-address "jamie@example.com"
|
|
user-full-name "Jamie Doe")
|
|
#+end_src
|
|
|
|
** Email Servers
|
|
Email server properties inside an alist
|
|
#+begin_src emacs-lisp
|
|
(defvar main-mail-server '((name . "example")
|
|
(imap-url . "imap.example.com")
|
|
(imap-port . "imaps")
|
|
(imap-stream . ssl)
|
|
(smtp-url . "smtp.example.com")
|
|
(smtp-port . 587)
|
|
(smtp-stream . ssl))
|
|
"main mail server properties")
|
|
#+end_src
|