|
@@ -0,0 +1,50 @@
|
|
|
|
+#+Title: Email2OrgAgenda
|
|
|
|
+#+Author: Sam Flint
|
|
|
|
+#+PROPERTY: noweb tangle
|
|
|
|
+
|
|
|
|
+* Copyright Statement
|
|
|
|
+#+Name: CopyrightStatement
|
|
|
|
+#+begin_src text
|
|
|
|
+ Copyright FlintFam Systems Management, 2013.
|
|
|
|
+
|
|
|
|
+ This program is free software: you can redistribute it and/or modify
|
|
|
|
+ it under the terms of the GNU General Public License as published by
|
|
|
|
+ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
+ (at your option) any later version.
|
|
|
|
+
|
|
|
|
+ This program is distributed in the hope that it will be useful,
|
|
|
|
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+ GNU General Public License for more details.
|
|
|
|
+
|
|
|
|
+ You should have received a copy of the GNU General Public License
|
|
|
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
+#+end_src
|
|
|
|
+#+Caption: Copyright Notice (CopyrightStatement)
|
|
|
|
+* Code
|
|
|
|
+** Imports
|
|
|
|
+#+Name: Imports
|
|
|
|
+#+BEGIN_SRC python
|
|
|
|
+ import os, sys, re
|
|
|
|
+ from email.parser import HeaderParser
|
|
|
|
+#+END_SRC
|
|
|
|
+#+CAPTION: use-name-as-caption
|
|
|
|
+We use each library for a purpose:
|
|
|
|
+ - os :: foo
|
|
|
|
+ - sys :: is used to access arguments, input
|
|
|
|
+ - re :: used for matching and extraction
|
|
|
|
+ - HeaderParser from email.parser :: blarg
|
|
|
|
+** Variables
|
|
|
|
+#+Name: MiscVars
|
|
|
|
+#+BEGIN_SRC python
|
|
|
|
+
|
|
|
|
+#+END_SRC
|
|
|
|
+#+CAPTION: use-name-as-caption
|
|
|
|
+** Subroutines
|
|
|
|
+#+Name: Subroutines
|
|
|
|
+#+BEGIN_SRC python
|
|
|
|
+
|
|
|
|
+#+END_SRC
|
|
|
|
+#+CAPTION: use-name-as-caption
|
|
|
|
+** Main body
|
|
|
|
+** Final code
|