emacs-config/personal-sample.org

982 B

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

  (defvar user-home-path "/home/jamie"
    "default fallback home dir path")

Email

not putting email information feels safer…

Email credentials

  (setq user-mail-address "jamie@example.com"
	user-full-name "Jamie Doe")

Email Servers

Email server properties inside an alist

  (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")