a �DOg?�� @s>dZddlZddlZddlZddlZddlZz ddlZWneyNdZYn0dZddl m Z ddlm Z gd�Z dZGd d �d e�ZGd d �d e�ZGd d�de�ZGdd�de�ZGdd�de�ZGdd�de�ZdZdZhd�Zgd�Zddd�ZdZe�dgd��Ze�dgd ��Zd!d"�Z d#d$�ZdZd%d&�Z d[d'd(�Z!d\d)d*�Z"e�rZd+d,�Z#Gd-d.�d.�Z$e�r�Gd/d0�d0e$�Z%e �&d0�e'd1k�r:ddl(Z(e(j)d2d3�Z*e*j+d4d5d6d7d8�e*j+d9d:d;dd?e,d@eefdA�e*j+dBdCdDe,dEdA�e*j+dFdGdHddIdJ�e*�-�Z.e.j/Z/e.j�sBe/d?k�r2eZ/e$e.j0e/dK�Z1ne/d?k�rPeZ/e%e.j0e/dK�Z1e1�2�Z3dLe3v�rxe1�4�e1�5e.j5�\Z6Z7Z8Z9Z:e;dMe:dNe7dOe8dPe9�dQdR�ZdS�Z8e1�?e8e9�\Z6Z@e@D]Z\ZAZBe eBdT��CdUdS�dZDe eBdV�ZEe,eBd�ZFe;dW�GeAe>> from nntplib import NNTP >>> s = NNTP('news') >>> resp, count, first, last, name = s.group('comp.lang.python') >>> print('Group', name, 'has', count, 'articles, range', first, 'to', last) Group comp.lang.python has 51 articles, range 5770 to 5821 >>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last)) >>> resp = s.quit() >>> Here 'resp' is the server response line. Error responses are turned into exceptions. To post an article from a file: >>> f = open(filename, 'rb') # file containing article, including header >>> resp = s.post(f) >>> For descriptions of all methods, read the comments in the code below. Note that all arguments and return values representing article numbers are strings, not numbers, since they are rarely used for calculations. �NFT)� decode_header)�_GLOBAL_DEFAULT_TIMEOUT)�NNTP� NNTPError�NNTPReplyError�NNTPTemporaryError�NNTPPermanentError�NNTPProtocolError� NNTPDataErrorric@seZdZdZdd�ZdS)rz%Base class for all nntplib exceptionscGs>tj|g|�R�z|d|_Wnty8d|_Yn0dS)NrzNo response given)� Exception�__init__�response� IndexError)�self�args�r�/usr/lib64/python3.9/nntplib.pyr bs  zNNTPError.__init__N)�__name__� __module__� __qualname__�__doc__r rrrrr`src@seZdZdZdS)rzUnexpected [123]xx replyN�rrrrrrrrrisrc@seZdZdZdS)rz 4xx errorsNrrrrrrmsrc@seZdZdZdS)rz 5xx errorsNrrrrrrqsrc@seZdZdZdS)r z"Response does not begin with [1-5]Nrrrrrr usr c@seZdZdZdS)r zError in response dataNrrrrrr ysr �wi3> �215Z230Z231Z222Z220Z282Z100Z225Z101�211Z221Z224)�subject�from�datez message-idZ references�:bytes�:linesrr)�bytes�lines� � GroupInfo)�group�last�first�flag� ArticleInfo)�number� message_idr!cCsJg}t|�D]2\}}t|t�r4|�|�|p,d��q |�|�q d�|�S)zvTakes a unicode string representing a munged header value and decodes it as a (possibly non-ASCII) readable value.�ascii�)�_email_decode_header� isinstancer �append�decode�join)Z header_str�parts�v�encrrrr�s   rcCs�g}|D]`}|ddkr:|dd��d�\}}}d|}n|�d�\}}}|��}t�||�}|�|�qt}t|�t|�kr�td��|dt|��|kr�td��|S)z�Parse a list of string representing the response to LIST OVERVIEW.FMT and return a list of header/metadata names. Raises NNTPDataError if the response is not compliant (cf. RFC 3977, section 8.4).r�:�Nz$LIST OVERVIEW.FMT response too shortz*LIST OVERVIEW.FMT redefines default fields)� partition�lower�_OVERVIEW_FMT_ALTERNATIVES�getr/�_DEFAULT_OVERVIEW_FMT�lenr )r!�fmt�line�name�_�suffix�defaultsrrr�_parse_overview_fmt�s    rCcCs�tt�}g}|D]�}i}|�d�^}}t|�}t|�D]�\} } | t|�krLq6|| } | �d�} | |kr�| s�| d} | r�| dt| ����| kr�td��| r�| t| �d�nd} | ||| <q6|�||f�q|S)zZParse the response to an OVER or XOVER command according to the overview format `fmt`.� r5z: Nz?OVER/XOVER response doesn't include names of additional headers) r<r;�split�int� enumerate� startswithr8r r/)r!r=Zdata_process_funcZ n_defaultsZoverviewr>�fieldsZarticle_number�tokens�i�token� field_nameZ is_metadata�hrrr�_parse_overview�s&   rOcCs�|dur |dd�}|dd�}t|dd��}t|dd��}t|dd��}t|dd��}t|dd��}t|dd��}|dkr�|d7}n|d kr�|d 7}t�||||||�S) z�Parse a pair of (date, time) strings, and return a datetime object. If only the date is given, it is assumed to be date and time concatenated together (e.g. response to the DATE command). Ni�����������������Fi��dil)rF�datetime)�date_str�time_strZhoursZminutesZseconds�yearZmonthZdayrrr�_parse_datetime�s   rZcCsPt|tj�sd}n d�|�}|j}|r<|d}d�||�}n d�||�}||fS)aPFormat a date or datetime object as a pair of (date, time) strings in the format required by the NEWNEWS and NEWGROUPS commands. If a date object is passed, the time is assumed to be midnight (00h00). The returned representation depends on the legacy flag: * if legacy is False (the default): date has the YYYYMMDD format and time the HHMMSS format * if legacy is True: date has the YYMMDD format and time the HHMMSS format. RFC 3977 compliant servers should understand both formats; therefore, legacy is only needed when talking to old servers. Z000000z({0.hour:02d}{0.minute:02d}{0.second:02d}rUz{0:02d}{1.month:02d}{1.day:02d}z{0:04d}{1.month:02d}{1.day:02d})r.rV�formatrY)Zdt�legacyrX�yrWrrr�_unparse_datetime�s   r^cCs|durt��}|j||d�S)z�Wrap a socket in SSL/TLS. Arguments: - sock: Socket to wrap - context: SSL context to use for the encrypted connection Returns: - sock: New, encrypted socket. N)Zserver_hostname)�sslZ_create_stdlib_contextZ wrap_socket)�sock�context�hostnamerrr� _encrypt_onsrcc@seZdZdZdZeddddefdd�Zdd�Zd d �Z d d �Z d d�Z dd�Z dd�Z dd�ZeZdd�Zdd�Zdidd�Zdd�Zdjdd�Zd d!�Zdkd"d#�Zdld$d%�Zd&d'�Zd(d)�Zd*d+�Zdd,�d-d.�Zdd,�d/d0�Zdmdd,�d1d2�Zd3d4�Zd5d6�Zd7d8�Z d9d:�Z!dd,�d;d<�Z"d=d>�Z#d?d@�Z$dndAdB�Z%dCdD�Z&dEdF�Z'dodGdH�Z(dpdd,�dIdJ�Z)dqdd,�dKdL�Z*drdd,�dMdN�Z+dOdP�Z,dd,�dQdR�Z-dd,�dSdT�Z.dd,�dUdV�Z/dWdX�Z0dYdZ�Z1d[d\�Z2d]d^�Z3d_d`�Z4dadb�Z5dsdcdd�Z6dedf�Z7e8�rdtdgdh�Z9dS)urzutf-8�surrogateescapeNFcCs~||_||_|�|�|_d|_z2|j�d�|_|�|�|s@|rN|�|||�Wn(|jrh|j��|j���Yn0dS)a,Initialize an instance. Arguments: - host: hostname to connect to - port: port to connect to (default the standard NNTP port) - user: username to authenticate with - password: password to use with username - readermode: if true, send 'mode reader' command after connecting. - usenetrc: allow loading username and password from ~/.netrc file if not specified explicitly - timeout: timeout (in seconds) used for socket connections readermode is sometimes necessary if you are connecting to an NNTP server on the local machine and intend to call reader-specific commands, such as `group'. If you get unexpected NNTPPermanentErrors, you might need to set readermode. N�rwb) �host�port�_create_socketr`�file�makefile� _base_init�login�close)rrfrg�user�password� readermode�usenetrc�timeoutrrrr 8s    z NNTP.__init__cCs^d|_|��|_d|_|��d|_|rNd|jvrN|��|jsNd|_|��d|_d|_dS)z~Partial initialization for the NNTP protocol. This instance method is extracted for supporting the test code. rNF�READER) � debugging�_getresp�welcome�_caps�getcapabilities�readermode_afterauth�_setreadermode�tls_on� authenticated)rrprrrrk[s  zNNTP._base_initcCs|S�Nr�rrrr� __enter__}szNNTP.__enter__c s^�fdd�}|�rZz6z ���Wnttfy6Yn0W|�rZ���n|�rX���0dS)Ncs t�d�S)Nri)�hasattrrr~rr���zNNTP.__exit__..)�quit�OSError�EOFError�_close)rrZ is_connectedrr~r�__exit__�s   �z NNTP.__exit__cCs<|dur|std��t�d||j|j�t�|j|jf|�S)Nz0Non-blocking socket (timeout=0) is not supportedznntplib.connect)� ValueError�sys�auditrfrg�socket�create_connection)rrrrrrrh�s zNNTP._create_socketcCs|jrtdt|j��|jS)z�Get the welcome message from the server (this is read and squirreled away by __init__()). If the response code is 200, posting is allowed; if it 201, posting is not allowed.z *welcome*)rt�print�reprrvr~rrr� getwelcome�szNNTP.getwelcomec Cs�|jdur~d|_d|_z|��\}}WnttfyBi|_Yn<0||_d|vrfttt|d��|_d|vr~d� |d�|_|jS)z�Get the server capabilities, as read by __init__(). If the CAPABILITIES command is not supported, an empty dict is returned.Nr6�VERSIONZIMPLEMENTATION� ) rw� nntp_versionZnntp_implementation� capabilitiesrr�max�maprFr1)r�resp�capsrrrrx�s  zNNTP.getcapabilitiescCs ||_dS)z�Set the debugging level. Argument 'level' means: 0: no debugging output (default) 1: print commands and responses but not body text etc. 2: also print raw lines read and sent before stripping CR/LFN)rt)r�levelrrr�set_debuglevel�szNNTP.set_debuglevelcCsHt�d||�|t}|jdkr.tdt|��|j�|�|j��dS)zfInternal: send one line to the server, appending CRLF. The `line` must be a bytes-like object.znntplib.putliner6z*put*N) r�r��_CRLFrtr�r�ri�write�flush�rr>rrr�_putline�s  z NNTP._putlinecCs2|jrtdt|��|�|j|j�}|�|�dS)zkInternal: send one command to the server (through _putline()). The `line` must be a unicode string.z*cmd*N)rtr�r��encode�encoding�errorsr�r�rrr�_putcmd�sz NNTP._putcmdTcCs�|j�td�}t|�tkr$td��|jdkrrrr�_getline�s   z NNTP._getlinecCsl|��}|jrtdt|��|�|j|j�}|dd�}|dkrHt|��|dkrXt|��|dvrht |��|S)z�Internal: get a response from the server. Raise various errors if the response indicates an error. Returns a unicode string.z*resp*Nr6�4�5Z123) r�rtr�r�r0r�r�rrr )rr��crrrru�s z NNTP._getrespcCs�d}z�t|ttf�r"t|d�}}|��}|dd�tvrBt|��g}|dur�dtdf}|�d�}||vrnq�|� d�r�|dd�}|� |�qZn8d}|��}||kr�q�|� d�r�|dd�}|� |�q�W|r�|� �n|r�|� �0||fS) aPInternal: get a response plus following text from the server. Raise various errors if the response indicates an error. Returns a (response, lines) tuple where `response` is a unicode string and `lines` is a list of bytes objects. If `file` is a file-like object, it must be open in binary mode. N�wb��.s. Fs..r6) r.�strr �openru� _LONGRESPrr�r�rHr�r/rm)rriZ openedFiler�r!Z terminatorsr>� terminatorrrr� _getlongresp�s8        � zNNTP._getlongrespcCs|�|�|��S)zWInternal: send a command and get the response. Same return value as _getresp().)r�rur�rrr� _shortcmds zNNTP._shortcmdcCs|�|�|�|�S)zoInternal: send a command and get the response plus following text. Same return value as _getlongresp().�r�r�)rr>rirrr�_longcmds z NNTP._longcmdcs.��|���|�\}}|�fdd�|D�fS)z�Internal: send a command and get the response plus following text. Same as _longcmd() and _getlongresp(), except that the returned `lines` are unicode strings rather than bytes objects. csg|]}|��j�j��qSr)r0r�r���.0r>r~rr� +s�z'NNTP._longcmdstring..r�)rr>rir��listrr~r�_longcmdstring$s   �zNNTP._longcmdstringcCs`z|jWStyYn0z|�d�\}}WntyLtdd�}Yn 0t|�}||_|S)zqInternal: get the overview format. Queries the server if not already done, else returns the cached value.zLIST OVERVIEW.FMTN)Z_cachedoverviewfmt�AttributeErrorr�rr;rC)rr�r!r=rrr�_getoverviewfmt.s  zNNTP._getoverviewfmtcCsdd�|D�S)NcSsg|]}t|����qSr)r#rEr�rrrr�Ar�z#NNTP._grouplist..r)rr!rrr� _grouplist?szNNTP._grouplistcCs8i}|�d�\}}|D]}|��^}}|||<q||fS)a!Process a CAPABILITIES command. Not supported by all servers. Return: - resp: server response if successful - caps: a dictionary mapping capability names to lists of tokens (for example {'VERSION': ['2'], 'OVER': [], LIST: ['ACTIVE', 'HEADERS'] }) Z CAPABILITIES)r�rE)rr�r�r!r>r?rJrrrr�Cs   zNNTP.capabilities)ricCsbt|tjtjf�s$td�|jj���t||jdk�\}}d�||�}|� ||�\}}||� |�fS)z�Process a NEWGROUPS command. Arguments: - date: a date or datetime object Return: - resp: server response if successful - list: list of newsgroup names �Athe date parameter must be a date or datetime object, not '{:40}'rPzNEWGROUPS {0} {1}) r.rVr� TypeErrorr[� __class__rr^r�r�r�)rrrirWrX�cmdr�r!rrr� newgroupsQs�� zNNTP.newgroupscCsRt|tjtjf�s$td�|jj���t||jdk�\}}d�|||�}|� ||�S)z�Process a NEWNEWS command. Arguments: - group: group name or '*' - date: a date or datetime object Return: - resp: server response if successful - list: list of message ids r�rPzNEWNEWS {0} {1} {2}) r.rVrr�r[r�rr^r�r�)rr$rrirWrXr�rrr�newnewsas��z NNTP.newnewscCs4|durd|}nd}|�||�\}}||�|�fS)a@Process a LIST or LIST ACTIVE command. Arguments: - group_pattern: a pattern indicating which groups to query - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of (group, last, first, flag) (strings) Nz LIST ACTIVE �LIST)r�r�)r� group_patternri�commandr�r!rrrr�qs  z NNTP.listc Cs�t�d�}|�d|�\}}|�d�s8|�d|�\}}i}|D]:}|�|���}|r@|�dd�\} } |sr| S| || <q@|r�||fSdSdS)Nz^(?P[^ ]+)[ ]+(.*)$zLIST NEWSGROUPS rzXGTITLE r6rPr,)�re�compiler�rH�search�stripr$) rr�Z return_allZline_patr�r!�groupsZraw_line�matchr?Zdescrrr�_getdescriptions�s   zNNTP._getdescriptionscCs |�|d�S)a�Get a description for a single group. If more than one group matches ('group' is a pattern), return the first. If no group matches, return an empty string. This elides the response code from the server, since it can only be '215' or '285' (for xgtitle) anyway. If the response code is needed, use the 'descriptions' method. NOTE: This neither checks for a wildcard in 'group' nor does it check whether the group actually exists.F�r�)rr$rrr� description�s zNNTP.descriptioncCs |�|d�S)z'Get descriptions for a range of groups.Tr�)rr�rrr� descriptions�szNNTP.descriptionscCs�|�d|�}|�d�s t|��|��}d}}}t|�}|dkr�|d}|dkr�|d}|dkr�|d}|dkr�|d��}|t|�t|�t|�|fS)aProcess a GROUP command. Argument: - group: the group name Returns: - resp: server response if successful - count: number of articles - first: first article number - last: last article number - name: the group name zGROUP rrr6rPr�rQ)r�rHrrEr<r8rF)rr?r��words�countr&r%�nrrrr$�s    z NNTP.groupcCs |�d|�S)aProcess a HELP command. Argument: - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of strings returned by the server in response to the HELP command ZHELP)r�)rrirrr�help�sz NNTP.helpcCs8|�d�st|��|��}t|d�}|d}|||fS)z_Internal: parse the response line of a STAT, NEXT, LAST, ARTICLE, HEAD or BODY command.Z22r6rP)rHrrErF)rr�r��art_numr*rrr� _statparse�s   zNNTP._statparsecCs|�|�}|�|�S)z/Internal: process a STAT, NEXT or LAST command.)r�r�)rr>r�rrr�_statcmd�s z NNTP._statcmdcCs"|r|�d�|��S|�d�SdS)a(Process a STAT command. Argument: - message_spec: article number or message id (if not specified, the current article is selected) Returns: - resp: server response if successful - art_num: the article number - message_id: the message id zSTAT {0}ZSTATN)r�r[)r� message_specrrr�stat�s z NNTP.statcCs |�d�S)z;Process a NEXT command. No arguments. Return as for STAT.ZNEXT�r�r~rrr�next�sz NNTP.nextcCs |�d�S)z;Process a LAST command. No arguments. Return as for STAT.ZLASTr�r~rrrr%�sz NNTP.lastcCs0|�||�\}}|�|�\}}}|t|||�fS)z2Internal: process a HEAD, BODY or ARTICLE command.)r�r�r()rr>rir�r!r�r*rrr�_artcmd�sz NNTP._artcmdcCs$|durd�|�}nd}|�||�S)a0Process a HEAD command. Argument: - message_spec: article number or message id - file: filename string or file object to store the headers in Returns: - resp: server response if successful - ArticleInfo: (article number, message id, list of header lines) NzHEAD {0}ZHEAD�r[r��rr�rir�rrr�head�s z NNTP.headcCs$|durd�|�}nd}|�||�S)a+Process a BODY command. Argument: - message_spec: article number or message id - file: filename string or file object to store the body in Returns: - resp: server response if successful - ArticleInfo: (article number, message id, list of body lines) NzBODY {0}ZBODYr�r�rrr�bodys z NNTP.bodycCs$|durd�|�}nd}|�||�S)a5Process an ARTICLE command. Argument: - message_spec: article number or message id - file: filename string or file object to store the article in Returns: - resp: server response if successful - ArticleInfo: (article number, message id, list of article lines) Nz ARTICLE {0}ZARTICLEr�r�rrr�articles z NNTP.articlecCs |�d�S)zYProcess a SLAVE command. Returns: - resp: server response if successful ZSLAVE)r�r~rrr�slave!sz NNTP.slavecsDt�d��|�d�||�|�\}}�fdd��|�fdd�|D�fS)aiProcess an XHDR command (optional server extension). Arguments: - hdr: the header type (e.g. 'subject') - str: an article nr, a message id, or a range nr1-nr2 - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of (nr, value) strings z^([0-9]+) ?(.*) ?z XHDR {0} {1}cs��|�}|r|�dd�S|S)Nr6rP)r�r$)r>�m)�patrr� remove_number2s z NNTP.xhdr..remove_numbercsg|] }�|��qSrrr�)r�rrr�5r�zNNTP.xhdr..)r�r�r�r[)rZhdrr�rir�r!r)r�r�r�xhdr's  z NNTP.xhdrcCs.|�d�||�|�\}}|��}|t||�fS)aFProcess an XOVER command (optional server extension) Arguments: - start: start of range - end: end of range - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of dicts containing the response fields z XOVER {0}-{1})r�r[r�rO)r�start�endrir�r!r=rrr�xover7s �z NNTP.xoverc Csxd|jvrdnd}t|ttf�r>|\}}|d�||p6d�7}n|durR|d|}|�||�\}}|��}|t||�fS)a�Process an OVER command. If the command isn't supported, fall back to XOVER. Arguments: - message_spec: - either a message id, indicating the article to fetch information about - or a (start, end) tuple, indicating a range of article numbers; if end is None, information up to the newest message will be retrieved - or None, indicating the current article number must be used - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of dicts containing the response fields NOTE: the "message id" form isn't supported by XOVER ZOVERZXOVERz {0}-{1}r,Nr�)rwr.�tupler�r[r�r�rO) rr�rir�r�r�r�r!r=rrr�overEs z NNTP.overcCsb|�d�}|�d�st|��|��}t|�dkr8t|��|d}t|�dkrTt|��|t|d�fS)z�Process the DATE command. Returns: - resp: server response if successful - date: datetime object ZDATEZ111rPr6�N)r�rHrrEr<r rZ)rr��elemrrrrr`s    z NNTP.datecCs�|�|�}|�d�st|��t|ttf�r2|��}|D]:}|�t�sR|� d�t}|�d�rdd|}|j � |�q6|j � d�|j � �|� �S)N�3r"r�s. )r�rHrr.r � bytearray� splitlines�endswithr��rstriprir�r�ru)rr��fr�r>rrr�_postqs      z NNTP._postcCs |�d|�S)z�Process a POST command. Arguments: - data: bytes object, iterable or file containing the article Returns: - resp: server response if successfulZPOST)r�)r�datarrr�post�sz NNTP.postcCs|�d�|�|�S)a Process an IHAVE command. Arguments: - message_id: message-id of the article - data: file containing the article Returns: - resp: server response if successful Note that if the server refuses the article an exception is raised.z IHAVE {0})r�r[)rr*r�rrr�ihave�sz NNTP.ihavecCs4z"|jr|j��|`W|j��n |j��0dSr})rirmr`r~rrrr��s  z NNTP._closecCs&z|�d�}W|��n |��0|S)zdProcess a QUIT command and close the socket. Returns: - resp: server response if successfulZQUIT)r�r�)rr�rrrr��s z NNTP.quitcCs�|jrtd��|s|std��z<|rX|sXddl}|��}|�|j�}|rX|d}|d}WntylYn0|svdS|�d|�}|�d�r�|s�t|��n |�d|�}|�d�s�t |��d|_ |� �|j r�d |j vr�|� �d|_ |� �dS) NzAlready logged in.z7At least one of `user` and `usenetrc` must be specifiedrrPzauthinfo user Z381zauthinfo pass Z281rs)r|r��netrcZauthenticatorsrfr�r�rHrrrwrxryrz)rrnrorqr�Z credentialsZauthr�rrrrl�s>�      z NNTP.loginc Cs`z|�d�|_WnJty"Yn:tyZ}z"|j�d�rDd|_n�WYd}~n d}~00dS)Nz mode readerZ480T)r�rvrrr rHry)r�errrrz�s  zNNTP._setreadermodecCs||jrtd��|jrtd��|�d�}|�d�rp|j��t|j||j �|_|j� d�|_d|_d|_ |� �nt d��dS) zzProcess a STARTTLS command. Arguments: - context: SSL context to use for the encrypted connection zTLS is already enabled.z+TLS cannot be started after authentication.�STARTTLSZ382reTNzTLS failed to start.)r{r�r|r�rHrirmrcr`rfrjrwrxr)rrar�rrr�starttls�s    z NNTP.starttls)T)N)N)N)N)N)N)N)N)N)NNT)N):rrrr�r�� NNTP_PORTrr rkrr�rhr�rxr��debugr�r�r�rur�r�r�r�r�r�r�r�r�r�r�r�r�r$r�r�r�r�r�r%r�r�r�r�r�r�r�r�rr�r�r�r�r�rlrz� _have_sslr�rrrrr(sp � #"     .         ) rcs8eZdZedddddef�fdd� Z�fdd�Z�ZS)�NNTP_SSLNFc s"||_t��|||||||�dS)z�This works identically to NNTP.__init__, except for the change in default port and the `ssl_context` argument for SSL connections. N)� ssl_context�superr ) rrfrgrnror�rprqrr�r�rrr �s�zNNTP_SSL.__init__cs@t��|�}zt||j|j�}Wn|���Yn0|SdSr})rrhrcr�rfrm)rrrr`rrrrhs zNNTP_SSL._create_socket)rrr� NNTP_SSL_PORTrr rh� __classcell__rrrrr��s � r��__main__zJ nntplib built-in demo - display the latest articles in a newsgroup)r�z-gz--groupzgmane.comp.python.generalz3group to fetch messages from (default: %(default)s))�defaultr�z-sz--serverz news.gmane.ioz+NNTP server hostname (default: %(default)s)z-pz--portr�z#NNTP port number (default: %s / %s))r�typer�z-nz --nb-articles� z2number of articles to fetch (default: %(default)s)z-Sz--ssl� store_truezuse NNTP over SSL)�actionrr�)rfrgr�ZGroupZhaszarticles, range�tocCs$t|�|kr |d|d�d}|S)NrQz...)r<)�sZlimrrr�cut3s r r6r�s�A       ���    S    � �  � � �      �