Skip to content

Commit

Permalink
Merge remote branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
wcbeard committed Apr 10, 2011
2 parents 469d0a6 + ec83278 commit 0cdd91c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/org
Submodule org updated from ba0f6d to 7021f7
7 changes: 4 additions & 3 deletions starter-kit-gnus-imap.org
Expand Up @@ -77,11 +77,11 @@ and make sure that no-one else can read it with
#+end_src

* sending mail
/Requirement/: gnus uses the [[http://en.wikipedia.org/wiki/STARTTLS][starttls]] tool for encrypted sending of
/Requirement/: gnus uses the [[http://www.gnu.org/software/gnutls/][gnutls]] tool for encrypted sending of
email to the Gmail SMTP server. This is easily installed on modern
Debian (including Ubuntu) systems with
#+begin_src sh
apt-get install starttls
apt-get install gnutls-bin
#+end_src

The following configures gnus to use the Gmail SMTP server for sending
Expand All @@ -92,7 +92,8 @@ email.
smtpmail-auth-credentials '(("smtp.gmail.com" 587 "your-name@gmail.com" nil))
smtpmail-default-smtp-server "smtp.gmail.com"
smtpmail-smtp-server "smtp.gmail.com"
smtpmail-smtp-service 587)
smtpmail-smtp-service 587
starttls-use-gnutls t)
#+end_src

If you don't want to be prompted for a password on every mail sent,
Expand Down
4 changes: 3 additions & 1 deletion starter-kit-org.org
Expand Up @@ -261,6 +261,7 @@ This code defines the =starter-kit-project= which is used to publish
the documentation for the Starter Kit to html.

#+begin_src emacs-lisp :results silent
(setq org-export-htmlize-output-type 'css)
(unless (boundp 'org-publish-project-alist)
(setq org-publish-project-alist nil))
(let ((this-dir (file-name-directory (or load-file-name buffer-file-name))))
Expand All @@ -271,6 +272,7 @@ the documentation for the Starter Kit to html.
:style "<link rel=\"stylesheet\" href=\"emacs.css\" type=\"text/css\"/>"
:publishing-directory ,this-dir
:index-filename "starter-kit.org"
:auto-postamble nil)))
:auto-postamble nil
:postamble nil)))
#+end_src

4 changes: 2 additions & 2 deletions starter-kit.org
Expand Up @@ -67,7 +67,7 @@ The [[http://emacswiki.org][Emacs Wiki]] is also very handy.
cd src/org/
make
#+end_src
6. build [[http://www.gnu.org/software/auctex/][auctex]] -- for instilllation help see the [[http://www.gnu.org/software/auctex/manual/auctex/Installation.html#Installation][auctex instillation
6. build [[http://www.gnu.org/software/auctex/][auctex]] -- for installation help see the [[http://www.gnu.org/software/auctex/manual/auctex/Installation.html#Installation][auctex installation
instructions]], auctex requires a working TeX installation

#+begin_src sh
Expand Down Expand Up @@ -677,7 +677,7 @@ Frequently asked questions.

Please share anything that you have come across which you think could
be helpful, either in the form of a pull request, a patch, or just an
email to me http://github.com/eschulte.
email to me at =schulte.eric= /at/ =gmail.com=.

** How do I use the starter kit without compiling org-mode?
:PROPERTIES:
Expand Down

0 comments on commit 0cdd91c

Please sign in to comment.