Gnus development mailing list
 help / color / mirror / Atom feed
From: Francesco Pizzolante <fpz@missioncriticalit.com>
To: ding@gnus.org
Subject: Re: Problem when sending diffs
Date: Thu, 7 Oct 2010 18:08:58 +0000 (UTC)	[thread overview]
Message-ID: <loom.20101007T200208-674@post.gmane.org> (raw)
In-Reply-To: <m2y6a9j4vf.fsf@igel.home>

Hi,

> >> .
> >
> > That's the problem.  The email isn't dot-encoded before sending.
> 
> It looks as if the dot line together with the previous three lines were
> sent out of sequence and were supposed to be sent at the end of the
> data.

I just tried with another smtp server and I get more details at the end 
of the log (see hereunder).

Any idea?

Francesco

220 eir.is.scarlet.be ESMTP Scarlet Belgium - Thu, 7 Oct 2010 20:00:36 +0200
EHLO WITTGENSTEIN.
250-eir.is.scarlet.be Hello ip-83-134-41-157.dsl.scarlet.be [83.134.41.157], 
pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-AUTH PLAIN LOGIN
250-STARTTLS
250-DELIVERBY
250 HELP
MAIL FROM:<fpz@missioncriticalit.com> SIZE=6226
250 2.1.0 <fpz@missioncriticalit.com>... Sender ok
RCPT TO:<fpz@missioncriticalit.com>
250 2.1.5 <fpz@missioncriticalit.com>... Recipient ok
DATA
354 Enter mail, end with "." on a line by itself
From: Francesco Pizzolante <fpz@missioncriticalit.com>
To: Francesco Pizzolante <fpz@missioncriticalit.com>
Subject: review > org export latex (default) packages
X-Archive: encrypt
Date: Thu, 07 Oct 2010 20:00:34 +0200
Message-ID: <87pqvl6fy5.fsf@mundaneum.com>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (windows-nt)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii

Hi,


===================================================================

emacs-init-XXX.el:
        Keep only inputenc in org-export-latex-default-packages-alist.
        Move all other packages to org-export-latex-packages-alist.
        Do not export any packages for mc* LaTeX classes (they must be
included in the classes).


Index: emacs-init-XXX.el
===================================================================
--- emacs-init-XXX.el.(revision 4693)
+++ emacs-init-XXX.el.(working copy)
@@ -8278,7 +8278,7 @@
         ;; 12.6.2
         (add-to-list 'org-export-latex-classes
                      '("mcarticle"
-                       
"\\documentclass{mcarticle}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{mcarticle}\n[NO-PACKAGES]"
                        ("\\section{%s}" . "\\section*{%s}")
                        ("\\subsection{%s}" . "\\subsection*{%s}")
                        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
@@ -8287,7 +8287,7 @@
 
         (add-to-list 'org-export-latex-classes
                      '("mccommercial"
-                       
"\\documentclass{mccommercial}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{mccommercial}\n[NO-PACKAGES]"
                        ("\\section{%s}" . "\\section*{%s}")
                        ("\\subsection{%s}" . "\\subsection*{%s}")
                        ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
@@ -8296,7 +8296,7 @@
 
         (add-to-list 'org-export-latex-classes
         ;; (setq org-export-latex-packages-alist
         ;;       '(("" "xcolor")

.

                      '("mcreport"
-                       
"\\documentclass{mcreport}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{mcreport}\n[NO-PACKAGES]"
                        ("\\chapter{%s}" . "\\chapter*{%s}")
                        ("\\section{%s}" . "\\section*{%s}")
                        ("\\subsection{%s}" . "\\subsection*{%s}")
@@ -8305,7 +8305,7 @@
 
         (add-to-list 'org-export-latex-classes
                      '("mcbook"
-                       
"\\documentclass{mcbook}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{mcbook}\n[NO-PACKAGES]"
                        ("\\chapter{%s}" . "\\chapter*{%s}")
                        ("\\section{%s}" . "\\section*{%s}")
                        ("\\subsection{%s}" . "\\subsection*{%s}")
@@ -8314,7 +8314,7 @@
 
         (add-to-list 'org-export-latex-classes
                      '("alta"
-                       "\\documentclass{alta}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{alta}\n"
                        ("\\chapter{%s}" . "\\chapter*{%s}")
                        ("\\section{%s}" . "\\section*{%s}")
                        ("\\subsection{%s}" . "\\subsection*{%s}")
@@ -8323,7 +8323,7 @@
 
         (add-to-list 'org-export-latex-classes
                      '("mccontract"
-                       
"\\documentclass{mccontract}\n\\usepackage[AUTO]{inputenc}\n"
+                       "\\documentclass{mccontract}\n[NO-PACKAGES]"
                        ("\\mccarticle{%s}" . "\\mccarticle*{%s}")
                        ("\\mccparagraph{%s}" . "\\mccparagraph*{%s}")))
 
@@ -8356,24 +8356,25 @@
         ;; please let me know so that we can find a solution.
 
         (setq org-export-latex-default-packages-alist
-              '(("AUTO" "inputenc" t)
-                ("T1" "fontenc" t)
-                ("" "fixltx2e" nil)
-                ("" "graphicx" t)
-                ("" "longtable" nil)
-                ("" "float" nil)
-                ("" "wrapfig" nil)
-                ("" "soul" t)
-                ("" "t1enc" t)
-                ("" "textcomp" t)
-                ("" "marvosym" t)
-                ("" "wasysym" t)
-                ("" "latexsym" t)
-                ("" "amssymb" t)
-                ("" "hyperref" nil)
-                "\\tolerance=1000"))
+              '(("AUTO" "inputenc")))
 
+        (add-to-list 'org-export-latex-packages-alist '("T1" "fontenc") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "fixltx2e") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "graphicx") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "longtable") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "float") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "wrapfig") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "soul") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "t1enc") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "textcomp") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "marvosym") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "wasysym") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "latexsym") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "amssymb") t)
+        (add-to-list 'org-export-latex-packages-alist '("" "hyperref") t)
+        (add-to-list 'org-export-latex-packages-alist '"\\tolerance=1000" t)
 
+
 ;;*** Not sorted
 
         (section "Not sorted")
@@ -8442,11 +8443,11 @@
 
         ;; if you want fontified source code, then you must include the
         ;; `listings' package
-        (add-to-list 'org-export-latex-packages-alist '("" "listings"))
+        (add-to-list 'org-export-latex-packages-alist '("" "listings") t)
 
         ;; if you want colored source code, then you need to include the
         ;; `xcolor' package
-        (add-to-list 'org-export-latex-packages-alist '("" "xcolor"))
+        (add-to-list 'org-export-latex-packages-alist '("" "xcolor") t)
 250 2.0.0 o97I0aWb013863 Message accepted for delivery
500 5.5.1 Command unrecognized: ""
500 5.5.1 Command unrecognized: "                      '("mcreport""
500 5.5.1 Command unrecognized: "-                       
"\\documentclass{mcreport}\n\\usepackage[AUTO]{inputenc}\n""
500 5.5.1 Command unrecognized: "+                       
"\\documentclass{mcreport}\n[NO-PACKAGES]""
500 5.5.1 Command unrecognized: "                        ("\\chapter{%s}" . 
"\\chapter*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\section{%s}" . 
"\\section*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\subsection{%s}" . 
"\\subsection*{%s}")"
500 5.5.1 Command unrecognized: "@@ -8305,7 +8305,7 @@"
500 5.5.1 Command unrecognized: " "
500 5.5.1 Command unrecognized: "         (add-to-list 'org-export-latex-
classes"
500 5.5.1 Command unrecognized: "                      '("mcbook""
500 5.5.1 Command unrecognized: "-                       
"\\documentclass{mcbook}\n\\usepackage[AUTO]{inputenc}\n""
500 5.5.1 Command unrecognized: "+                       
"\\documentclass{mcbook}\n[NO-PACKAGES]""
500 5.5.1 Command unrecognized: "                        ("\\chapter{%s}" . 
"\\chapter*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\section{%s}" . 
"\\section*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\subsection{%s}" . 
"\\subsection*{%s}")"
500 5.5.1 Command unrecognized: "@@ -8314,7 +8314,7 @@"
500 5.5.1 Command unrecognized: " "
500 5.5.1 Command unrecognized: "         (add-to-list 'org-export-latex-
classes"
500 5.5.1 Command unrecognized: "                      '("alta""
500 5.5.1 Command unrecognized: "-                       
"\\documentclass{alta}\n\\usepackage[AUTO]{inputenc}\n""
500 5.5.1 Command unrecognized: "+                       
"\\documentclass{alta}\n""
500 5.5.1 Command unrecognized: "                        ("\\chapter{%s}" . 
"\\chapter*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\section{%s}" . 
"\\section*{%s}")"
500 5.5.1 Command unrecognized: "                        ("\\subsection{%s}" . 
"\\subsection*{%s}")"
421 4.7.0 eir.is.scarlet.be Too many bad commands; closing connection
QUIT





  reply	other threads:[~2010-10-07 18:08 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-20  7:00 Francesco Pizzolante
2010-09-20 16:31 ` Lars Magne Ingebrigtsen
2010-10-07 11:34   ` Francesco Pizzolante
2010-10-07 12:01     ` Julien Danjou
2010-10-07 13:29       ` Francesco Pizzolante
2010-10-07 13:34         ` Julien Danjou
2010-10-07 13:40           ` Francesco Pizzolante
2010-10-07 13:34         ` Lars Magne Ingebrigtsen
2010-10-07 13:41           ` Francesco Pizzolante
2010-10-07 13:49             ` Lars Magne Ingebrigtsen
2010-10-07 13:58               ` Francesco Pizzolante
2010-10-07 14:01                 ` Lars Magne Ingebrigtsen
2010-10-07 14:07                   ` Francesco Pizzolante
2010-10-07 17:21           ` Andreas Schwab
2010-10-07 18:08             ` Francesco Pizzolante [this message]
2010-10-07 18:12             ` Lars Magne Ingebrigtsen
2010-10-07 18:24               ` Francesco Pizzolante
2010-10-07 18:53                 ` Lars Magne Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=loom.20101007T200208-674@post.gmane.org \
    --to=fpz@missioncriticalit.com \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).