Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
dist-packages /
getmailcore /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
923
B
-rwxrwxrwx
2017-11-02 16:52
__init__.pyc
1.08
KB
-rwxrwxrwx
2020-08-24 23:52
_pop3ssl.py
5.8
KB
-rwxrwxrwx
2009-04-05 21:10
_pop3ssl.pyc
5.94
KB
-rwxrwxrwx
2020-08-24 23:52
_retrieverbases.py
70.04
KB
-rwxrwxrwx
2017-11-02 16:52
_retrieverbases.pyc
52.54
KB
-rwxrwxrwx
2020-08-24 23:52
baseclasses.py
14.33
KB
-rwxrwxrwx
2012-06-20 05:27
baseclasses.pyc
16.14
KB
-rwxrwxrwx
2020-08-24 23:52
compatibility.py
2.39
KB
-rwxrwxrwx
2012-06-21 21:24
compatibility.pyc
2.19
KB
-rwxrwxrwx
2020-08-24 23:52
constants.py
222
B
-rwxrwxrwx
2006-01-27 18:13
constants.pyc
348
B
-rwxrwxrwx
2020-08-24 23:52
destinations.py
43.11
KB
-rwxrwxrwx
2016-09-11 17:30
destinations.pyc
37.52
KB
-rwxrwxrwx
2020-08-24 23:52
exceptions.py
2.3
KB
-rwxrwxrwx
2012-06-20 05:27
exceptions.pyc
3.87
KB
-rwxrwxrwx
2020-08-24 23:52
filters.py
19.38
KB
-rwxrwxrwx
2016-10-22 18:46
filters.pyc
17.34
KB
-rwxrwxrwx
2020-08-24 23:52
imap_utf7.py
3.66
KB
-rwxrwxrwx
2012-05-26 20:10
imap_utf7.pyc
5.04
KB
-rwxrwxrwx
2020-08-24 23:52
logging.py
3.47
KB
-rwxrwxrwx
2008-02-17 18:10
logging.pyc
4.84
KB
-rwxrwxrwx
2020-08-24 23:52
message.py
7.69
KB
-rwxrwxrwx
2013-08-03 22:27
message.pyc
6.87
KB
-rwxrwxrwx
2020-08-24 23:52
retrievers.py
20.76
KB
-rwxrwxrwx
2016-10-22 18:46
retrievers.pyc
19.47
KB
-rwxrwxrwx
2020-08-24 23:52
utilities.py
22.36
KB
-rwxrwxrwx
2016-09-11 17:30
utilities.pyc
20.41
KB
-rwxrwxrwx
2020-08-24 23:52
Save
Rename
#!/usr/bin/env python2.3 '''Compatibility class declarations used elsewhere in the package. ''' __all__ = [ 'set', 'frozenset', ] import sys import imaplib import new if sys.version_info < (2, 4, 0): # set/frozenset not built-in until Python 2.4 import sets set = sets.Set frozenset = sets.ImmutableSet set = set frozenset = frozenset if sys.version_info < (2, 5, 0): # Python < 2.5.0 has a bug with the readonly flag on imaplib's select(). # Monkey-patch it in. def py25_select(self, mailbox='INBOX', readonly=False): """Select a mailbox. Flush all untagged responses. (typ, [data]) = <instance>.select(mailbox='INBOX', readonly=False) 'data' is count of messages in mailbox ('EXISTS' response). Mandated responses are ('FLAGS', 'EXISTS', 'RECENT', 'UIDVALIDITY'), so other responses should be obtained via <instance>.response('FLAGS') etc. """ self.untagged_responses = {} # Flush old responses. self.is_readonly = readonly if readonly: name = 'EXAMINE' else: name = 'SELECT' typ, dat = self._simple_command(name, mailbox) if typ != 'OK': self.state = 'AUTH' # Might have been 'SELECTED' return typ, dat self.state = 'SELECTED' if 'READ-ONLY' in self.untagged_responses \ and not readonly: if __debug__: if self.debug >= 1: self._dump_ur(self.untagged_responses) raise self.readonly('%s is not writable' % mailbox) return typ, self.untagged_responses.get('EXISTS', [None]) imaplib.IMAP4.select = new.instancemethod(py25_select, None, imaplib.IMAP4) if sys.version_info < (2, 5, 3): # A serious imaplib bug (http://bugs.python.org/issue1389051) was # fixed in 2.5.3. Earlier Python releases need a work-around. # Monkey-patch it in. def fixed_read(self, size): """Read 'size' bytes from remote.""" # sslobj.read() sometimes returns < size bytes chunks = [] read = 0 while read < size: data = self.sslobj.read(min(size-read, 16384)) read += len(data) chunks.append(data) return ''.join(chunks) imaplib.IMAP4_SSL.read = new.instancemethod(fixed_read, None, imaplib.IMAP4_SSL)