├── .BaGoMa.sample ├── .gitignore ├── CHANGES ├── MANIFEST.in ├── Makefile ├── README ├── README.dev ├── README.markdown ├── TODO ├── bagoma.py ├── dist.sh ├── gui.pyw ├── homepage ├── default.css ├── images │ ├── ad160x600.gif │ ├── img01.jpg │ ├── img02.jpg │ ├── img03.gif │ ├── img04.gif │ ├── img05.gif │ ├── img06.jpg │ ├── img07.gif │ └── img08.gif ├── index.html ├── sample.html └── template-license.txt ├── imap_utf7.py ├── img ├── Icons.svg ├── backup.gif └── restore.gif ├── install ├── setup-cxFreeze.py └── setup-py2exe.py ├── license.txt ├── muttrc.BaGoMa ├── nbproject ├── project.properties └── project.xml ├── setup.py ├── src.doc ├── google.analytics ├── html.title └── man.title └── version.py /.BaGoMa.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/.BaGoMa.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/CHANGES -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/README -------------------------------------------------------------------------------- /README.dev: -------------------------------------------------------------------------------- 1 | - http://bagoma.sourceforge.net/sample.html 2 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/TODO -------------------------------------------------------------------------------- /bagoma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/bagoma.py -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/dist.sh -------------------------------------------------------------------------------- /gui.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/gui.pyw -------------------------------------------------------------------------------- /homepage/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/default.css -------------------------------------------------------------------------------- /homepage/images/ad160x600.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/ad160x600.gif -------------------------------------------------------------------------------- /homepage/images/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img01.jpg -------------------------------------------------------------------------------- /homepage/images/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img02.jpg -------------------------------------------------------------------------------- /homepage/images/img03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img03.gif -------------------------------------------------------------------------------- /homepage/images/img04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img04.gif -------------------------------------------------------------------------------- /homepage/images/img05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img05.gif -------------------------------------------------------------------------------- /homepage/images/img06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img06.jpg -------------------------------------------------------------------------------- /homepage/images/img07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img07.gif -------------------------------------------------------------------------------- /homepage/images/img08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/images/img08.gif -------------------------------------------------------------------------------- /homepage/index.html: -------------------------------------------------------------------------------- 1 | ../doc/index.html -------------------------------------------------------------------------------- /homepage/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/sample.html -------------------------------------------------------------------------------- /homepage/template-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/homepage/template-license.txt -------------------------------------------------------------------------------- /imap_utf7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/imap_utf7.py -------------------------------------------------------------------------------- /img/Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/img/Icons.svg -------------------------------------------------------------------------------- /img/backup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/img/backup.gif -------------------------------------------------------------------------------- /img/restore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/img/restore.gif -------------------------------------------------------------------------------- /install/setup-cxFreeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/install/setup-cxFreeze.py -------------------------------------------------------------------------------- /install/setup-py2exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/install/setup-py2exe.py -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/license.txt -------------------------------------------------------------------------------- /muttrc.BaGoMa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/muttrc.BaGoMa -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/setup.py -------------------------------------------------------------------------------- /src.doc/google.analytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/src.doc/google.analytics -------------------------------------------------------------------------------- /src.doc/html.title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/src.doc/html.title -------------------------------------------------------------------------------- /src.doc/man.title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/src.doc/man.title -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gburca/BaGoMa/HEAD/version.py --------------------------------------------------------------------------------