NNTP to IMAP duplicator

Check-in [295fec7f85]
anonymous

Check-in [295fec7f85]

Overview
Comment:fix python version
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 295fec7f85fe30eae807aaf13e3f0043a00e78cbd92c77c228329adc31c8f490
User & Date: arcade@b1t.name on 2016-09-17 06:27:32.000
Other Links: branch diff | manifest | tags
Context
2016-09-17
06:32
other files check-in: 865f55448c user: arcade@b1t.name tags: master, trunk
06:27
fix python version check-in: 295fec7f85 user: arcade@b1t.name tags: master, trunk
2015-10-13
17:44
don't yell when server politely asks to wait check-in: 973a1d241e user: arcade@b1t.name tags: master, trunk
Changes
1
2
3
4
5
6
7
8
#!/usr/bin/env python3.4

import configparser, email.utils, getpass, imaplib, nntplib, re, sqlite3, sys
imaplib._MAXLINE = 1024 * 1024
nntplib._MAXLINE = 1024 * 1024

config = configparser.ConfigParser(allow_no_value = True)
config.read('nntpdup.conf')
|







1
2
3
4
5
6
7
8
#!/usr/bin/env python3

import configparser, email.utils, getpass, imaplib, nntplib, re, sqlite3, sys
imaplib._MAXLINE = 1024 * 1024
nntplib._MAXLINE = 1024 * 1024

config = configparser.ConfigParser(allow_no_value = True)
config.read('nntpdup.conf')