This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Added Proxyauth command to imaplib
Type: Stage:
Components: Library (Lib) Versions: Python 2.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: nnorwitz, rholbert
Priority: normal Keywords: patch

Created on 2002-11-14 21:27 by rholbert, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
imaplib.diff rholbert, 2002-11-14 21:27 Modified imaplib.py diff file
Messages (3)
msg41653 - (view) Author: Richard L. Holbert (rholbert) Date: 2002-11-14 21:27
Allows the Admin user to access any other user's mailbox. 
msg41654 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-11-14 23:23
Logged In: YES 
user_id=33168

Richard, thanks for the patch.

I have a couple of problems with the patch.  
 * The patch is against 2.2, not HEAD.  
    In this case it's easy to see where it should go, 
    but that isn't always the case.
 * This patch contains tabs, all python code 
    in the standard library should contain only spaces.
 * In the code that was added, name is not used.  
   Either name should be removed, or it should be 
   passed to _simple_command().  
 * There is also no documentation (Doc/lib/libimap.tex).

I don't know if this patch is worthwhile, since I know
nothing about imap.  Someone else will have to determine if
this proxyauth is generally applicable and should be
included.  However, are there any security issues associated
with using proxyauth?
msg41655 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2004-06-16 02:25
Logged In: YES 
user_id=33168

This was checked in 22-Nov-02, by piers, Lib/imaplib.py 1.57
History
Date User Action Args
2022-04-10 16:05:54adminsetgithub: 37476
2002-11-14 21:27:13rholbertcreate