Patch #998149: imaplib deleteacl and myrights.
diff --git a/Doc/lib/libimaplib.tex b/Doc/lib/libimaplib.tex
index 67da9ae..5717026 100644
--- a/Doc/lib/libimaplib.tex
+++ b/Doc/lib/libimaplib.tex
@@ -182,6 +182,10 @@
   Delete old mailbox named \var{mailbox}.
 \end{methoddesc}
 
+\begin{methoddesc}{deleteacl}{mailbox, who}
+  Delete the ACLs (remove any rights) set for who on mailbox.
+\end{methoddesc}
+
 \begin{methoddesc}{expunge}{}
   Permanently remove deleted items from selected mailbox. Generates an
   \samp{EXPUNGE} response for each deleted message. Returned data
@@ -242,6 +246,10 @@
   Returned data are tuples of message part envelope and data.
 \end{methoddesc}
 
+\begin{methoddes}{myrights}{mailbox}
+  Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
+\end{methoddesc}
+
 \begin{methoddesc}{namespace}{}
   Returns IMAP namespaces as defined in RFC2342.
 \versionadded{2.3}
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 8ccf8b8..2bdabb2 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -46,12 +46,14 @@
         'COPY':         ('SELECTED',),
         'CREATE':       ('AUTH', 'SELECTED'),
         'DELETE':       ('AUTH', 'SELECTED'),
+        'DELETEACL':    ('AUTH', 'SELECTED'),
         'EXAMINE':      ('AUTH', 'SELECTED'),
         'EXPUNGE':      ('SELECTED',),
         'FETCH':        ('SELECTED',),
         'GETACL':       ('AUTH', 'SELECTED'),
         'GETQUOTA':     ('AUTH', 'SELECTED'),
         'GETQUOTAROOT': ('AUTH', 'SELECTED'),
+        'MYRIGHTS':     ('AUTH', 'SELECTED'),
         'LIST':         ('AUTH', 'SELECTED'),
         'LOGIN':        ('NONAUTH',),
         'LOGOUT':       ('NONAUTH', 'AUTH', 'SELECTED', 'LOGOUT'),
@@ -389,6 +391,12 @@
         """
         return self._simple_command('DELETE', mailbox)
 
+    def deleteacl(self, mailbox, who):
+        """Delete the ACLs (remove any rights) set for who on mailbox.
+
+        (typ, [data]) = <instance>.deleteacl(mailbox, who)
+        """
+        return self._simple_command('DELETEACL', mailbox, who)
 
     def expunge(self):
         """Permanently remove deleted items from selected mailbox.
@@ -518,6 +526,13 @@
         typ, dat = self._simple_command(name, directory, pattern)
         return self._untagged_response(typ, dat, name)
 
+    def myrights(self, mailbox):
+        """Show my ACLs for a mailbox (i.e. the rights that I have on mailbox).
+
+        (typ, [data]) = <instance>.myrights(mailbox)
+        """
+        typ,dat = self._simple_command('MYRIGHTS', mailbox)
+        return self._untagged_response(typ, dat, 'MYRIGHTS')
 
     def namespace(self):
         """ Returns IMAP namespaces ala rfc2342
diff --git a/Misc/ACKS b/Misc/ACKS
index 071f86e..2a2013e 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -328,6 +328,7 @@
 Hannu Krosing
 Andrew Kuchling
 Vladimir Kushnir
+Arnaud Mazin
 Cameron Laird
 Tino Lange
 Andrew Langmead
diff --git a/Misc/NEWS b/Misc/NEWS
index e48309c..a7b0f1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,8 @@
 Library
 -------
 
+- imaplib has two new methods: deleteacl and myrights.
+
 - nntplib has two new methods: description and descriptions. They
   use a more RFC-compliant way of getting a newsgroup description.