2002-06-19 06:39:00 +02:00
|
|
|
# IMAP server support
|
2007-07-04 19:51:10 +02:00
|
|
|
# Copyright (C) 2002 - 2007 John Goerzen
|
2002-06-19 06:39:00 +02:00
|
|
|
# <jgoerzen@complete.org>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2003-04-16 21:23:45 +02:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2002-06-19 06:39:00 +02:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2006-08-12 06:15:55 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-06-19 06:39:00 +02:00
|
|
|
|
2009-08-12 21:49:58 +02:00
|
|
|
import imaplib
|
|
|
|
from offlineimap import imaplibutil, imaputil, threadutil
|
2011-01-05 17:00:55 +01:00
|
|
|
from offlineimap.ui import getglobalui
|
2002-07-03 15:04:40 +02:00
|
|
|
from threading import *
|
2008-08-03 00:04:32 +02:00
|
|
|
import thread, hmac, os, time
|
2008-03-09 06:46:51 +01:00
|
|
|
import base64
|
2002-10-07 22:59:02 +02:00
|
|
|
|
2008-09-16 23:51:11 +02:00
|
|
|
from StringIO import StringIO
|
|
|
|
from platform import system
|
|
|
|
|
2008-03-09 06:46:51 +01:00
|
|
|
try:
|
|
|
|
# do we have a recent pykerberos?
|
|
|
|
have_gss = False
|
|
|
|
import kerberos
|
|
|
|
if 'authGSSClientWrap' in dir(kerberos):
|
|
|
|
have_gss = True
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2002-07-03 15:04:40 +02:00
|
|
|
|
|
|
|
class UsefulIMAPMixIn:
|
|
|
|
def getstate(self):
|
|
|
|
return self.state
|
|
|
|
def getselectedfolder(self):
|
|
|
|
if self.getstate() == 'SELECTED':
|
|
|
|
return self.selectedfolder
|
|
|
|
return None
|
|
|
|
|
2003-06-02 23:17:29 +02:00
|
|
|
def select(self, mailbox='INBOX', readonly=None, force = 0):
|
2007-07-04 20:19:06 +02:00
|
|
|
if (not force) and self.getselectedfolder() == mailbox \
|
|
|
|
and self.is_readonly == readonly:
|
2002-07-03 15:04:40 +02:00
|
|
|
# No change; return.
|
|
|
|
return
|
|
|
|
result = self.__class__.__bases__[1].select(self, mailbox, readonly)
|
|
|
|
if result[0] != 'OK':
|
|
|
|
raise ValueError, "Error from select: %s" % str(result)
|
2002-07-10 13:18:07 +02:00
|
|
|
if self.getstate() == 'SELECTED':
|
2002-07-03 15:04:40 +02:00
|
|
|
self.selectedfolder = mailbox
|
|
|
|
else:
|
|
|
|
self.selectedfolder = None
|
|
|
|
|
2009-08-12 21:49:58 +02:00
|
|
|
def _mesg(self, s, secs=None):
|
|
|
|
imaplibutil.new_mesg(self, s, secs)
|
|
|
|
|
2010-12-16 13:43:46 +01:00
|
|
|
class UsefulIMAP4(UsefulIMAPMixIn, imaplibutil.WrappedIMAP4):
|
2007-07-04 19:51:10 +02:00
|
|
|
|
2008-09-16 23:51:11 +02:00
|
|
|
# This is a hack around Darwin's implementation of realloc() (which
|
|
|
|
# Python uses inside the socket code). On Darwin, we split the
|
|
|
|
# message into 100k chunks, which should be small enough - smaller
|
|
|
|
# might start seriously hurting performance ...
|
|
|
|
def read(self, size):
|
|
|
|
if (system() == 'Darwin') and (size>0) :
|
|
|
|
read = 0
|
|
|
|
io = StringIO()
|
|
|
|
while read < size:
|
2009-08-12 21:49:58 +02:00
|
|
|
data = imaplib.IMAP4.read (self, min(size-read,8192))
|
2008-09-16 23:51:11 +02:00
|
|
|
read += len(data)
|
|
|
|
io.write(data)
|
|
|
|
return io.getvalue()
|
|
|
|
else:
|
2009-08-12 21:49:58 +02:00
|
|
|
return imaplib.IMAP4.read (self, size)
|
2008-09-16 23:51:11 +02:00
|
|
|
|
2008-03-03 15:22:44 +01:00
|
|
|
class UsefulIMAP4_SSL(UsefulIMAPMixIn, imaplibutil.WrappedIMAP4_SSL):
|
2008-09-16 23:51:11 +02:00
|
|
|
# This is the same hack as above, to be used in the case of an SSL
|
|
|
|
# connexion.
|
|
|
|
def read(self, size):
|
|
|
|
if (system() == 'Darwin') and (size>0) :
|
|
|
|
read = 0
|
|
|
|
io = StringIO()
|
|
|
|
while read < size:
|
2009-08-12 21:49:58 +02:00
|
|
|
data = imaplibutil.WrappedIMAP4_SSL.read (self, min(size-read,8192))
|
2008-09-16 23:51:11 +02:00
|
|
|
read += len(data)
|
|
|
|
io.write(data)
|
|
|
|
return io.getvalue()
|
|
|
|
else:
|
|
|
|
return imaplibutil.WrappedIMAP4_SSL.read (self,size)
|
|
|
|
|
2007-07-04 20:17:27 +02:00
|
|
|
class UsefulIMAP4_Tunnel(UsefulIMAPMixIn, imaplibutil.IMAP4_Tunnel): pass
|
2002-06-19 06:39:00 +02:00
|
|
|
|
|
|
|
class IMAPServer:
|
2008-03-09 06:46:51 +01:00
|
|
|
GSS_STATE_STEP = 0
|
|
|
|
GSS_STATE_WRAP = 1
|
2003-04-18 04:18:34 +02:00
|
|
|
def __init__(self, config, reposname,
|
2002-11-05 00:15:42 +01:00
|
|
|
username = None, password = None, hostname = None,
|
2002-07-05 13:46:55 +02:00
|
|
|
port = None, ssl = 1, maxconnections = 1, tunnel = None,
|
2010-12-16 13:43:47 +01:00
|
|
|
reference = '""', sslclientcert = None, sslclientkey = None,
|
|
|
|
sslcacertfile= None):
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui = getglobalui()
|
2003-04-18 04:18:34 +02:00
|
|
|
self.reposname = reposname
|
2002-11-05 00:15:42 +01:00
|
|
|
self.config = config
|
2002-06-19 06:39:00 +02:00
|
|
|
self.username = username
|
|
|
|
self.password = password
|
2002-11-05 00:15:42 +01:00
|
|
|
self.passworderror = None
|
2007-07-05 06:04:14 +02:00
|
|
|
self.goodpassword = None
|
2002-06-19 06:39:00 +02:00
|
|
|
self.hostname = hostname
|
2002-07-05 08:36:34 +02:00
|
|
|
self.tunnel = tunnel
|
2002-06-19 06:39:00 +02:00
|
|
|
self.port = port
|
|
|
|
self.usessl = ssl
|
2008-05-23 21:58:18 +02:00
|
|
|
self.sslclientcert = sslclientcert
|
|
|
|
self.sslclientkey = sslclientkey
|
2010-12-16 13:43:47 +01:00
|
|
|
self.sslcacertfile = sslcacertfile
|
2002-06-19 07:22:21 +02:00
|
|
|
self.delim = None
|
|
|
|
self.root = None
|
2002-06-19 06:39:00 +02:00
|
|
|
if port == None:
|
|
|
|
if ssl:
|
|
|
|
self.port = 993
|
|
|
|
else:
|
|
|
|
self.port = 143
|
2002-07-03 15:04:40 +02:00
|
|
|
self.maxconnections = maxconnections
|
|
|
|
self.availableconnections = []
|
|
|
|
self.assignedconnections = []
|
2002-07-11 05:51:20 +02:00
|
|
|
self.lastowner = {}
|
2002-07-03 15:04:40 +02:00
|
|
|
self.semaphore = BoundedSemaphore(self.maxconnections)
|
|
|
|
self.connectionlock = Lock()
|
2002-07-05 13:46:55 +02:00
|
|
|
self.reference = reference
|
2008-03-09 06:46:51 +01:00
|
|
|
self.gss_step = self.GSS_STATE_STEP
|
|
|
|
self.gss_vc = None
|
|
|
|
self.gssapi = False
|
2002-06-19 06:39:00 +02:00
|
|
|
|
2002-11-05 00:15:42 +01:00
|
|
|
def getpassword(self):
|
2007-07-05 06:04:14 +02:00
|
|
|
if self.goodpassword != None:
|
|
|
|
return self.goodpassword
|
|
|
|
|
2002-11-05 00:15:42 +01:00
|
|
|
if self.password != None and self.passworderror == None:
|
|
|
|
return self.password
|
|
|
|
|
2011-01-05 17:00:55 +01:00
|
|
|
self.password = self.ui.getpass(self.reposname,
|
2003-04-18 04:18:34 +02:00
|
|
|
self.config,
|
2002-11-05 00:15:42 +01:00
|
|
|
self.passworderror)
|
|
|
|
self.passworderror = None
|
|
|
|
|
|
|
|
return self.password
|
|
|
|
|
2002-06-19 07:22:21 +02:00
|
|
|
def getdelim(self):
|
|
|
|
"""Returns this server's folder delimiter. Can only be called
|
2002-07-03 15:04:40 +02:00
|
|
|
after one or more calls to acquireconnection."""
|
2002-06-19 07:22:21 +02:00
|
|
|
return self.delim
|
|
|
|
|
|
|
|
def getroot(self):
|
|
|
|
"""Returns this server's folder root. Can only be called after one
|
2002-07-03 15:04:40 +02:00
|
|
|
or more calls to acquireconnection."""
|
2002-06-19 07:22:21 +02:00
|
|
|
return self.root
|
|
|
|
|
2002-07-03 15:04:40 +02:00
|
|
|
|
|
|
|
def releaseconnection(self, connection):
|
2007-07-04 20:34:02 +02:00
|
|
|
"""Releases a connection, returning it to the pool."""
|
2002-07-03 15:04:40 +02:00
|
|
|
self.connectionlock.acquire()
|
|
|
|
self.assignedconnections.remove(connection)
|
|
|
|
self.availableconnections.append(connection)
|
|
|
|
self.connectionlock.release()
|
|
|
|
self.semaphore.release()
|
|
|
|
|
2002-11-02 23:14:02 +01:00
|
|
|
def md5handler(self, response):
|
2002-11-02 23:30:41 +01:00
|
|
|
challenge = response.strip()
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'md5handler: got challenge %s' % challenge)
|
2002-11-06 02:10:14 +01:00
|
|
|
|
2010-12-13 18:45:42 +01:00
|
|
|
passwd = self.getpassword()
|
2002-11-06 02:10:14 +01:00
|
|
|
retval = self.username + ' ' + hmac.new(passwd, challenge).hexdigest()
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'md5handler: returning %s' % retval)
|
2002-11-02 23:14:02 +01:00
|
|
|
return retval
|
|
|
|
|
2002-11-05 00:38:39 +01:00
|
|
|
def plainauth(self, imapobj):
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'Attempting plain authentication')
|
2010-12-13 18:45:42 +01:00
|
|
|
imapobj.login(self.username, self.getpassword())
|
2008-03-09 06:46:51 +01:00
|
|
|
|
|
|
|
def gssauth(self, response):
|
|
|
|
data = base64.b64encode(response)
|
|
|
|
try:
|
|
|
|
if self.gss_step == self.GSS_STATE_STEP:
|
|
|
|
if not self.gss_vc:
|
|
|
|
rc, self.gss_vc = kerberos.authGSSClientInit('imap@' +
|
|
|
|
self.hostname)
|
|
|
|
response = kerberos.authGSSClientResponse(self.gss_vc)
|
|
|
|
rc = kerberos.authGSSClientStep(self.gss_vc, data)
|
|
|
|
if rc != kerberos.AUTH_GSS_CONTINUE:
|
|
|
|
self.gss_step = self.GSS_STATE_WRAP
|
|
|
|
elif self.gss_step == self.GSS_STATE_WRAP:
|
|
|
|
rc = kerberos.authGSSClientUnwrap(self.gss_vc, data)
|
|
|
|
response = kerberos.authGSSClientResponse(self.gss_vc)
|
|
|
|
rc = kerberos.authGSSClientWrap(self.gss_vc, response,
|
|
|
|
self.username)
|
|
|
|
response = kerberos.authGSSClientResponse(self.gss_vc)
|
|
|
|
except kerberos.GSSError, err:
|
|
|
|
# Kerberos errored out on us, respond with None to cancel the
|
|
|
|
# authentication
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', '%s: %s' % (err[0][0], err[1][0]))
|
2008-03-09 06:46:51 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
if not response:
|
|
|
|
response = ''
|
|
|
|
return base64.b64decode(response)
|
2002-11-05 00:38:39 +01:00
|
|
|
|
2002-07-03 15:04:40 +02:00
|
|
|
def acquireconnection(self):
|
|
|
|
"""Fetches a connection from the pool, making sure to create a new one
|
|
|
|
if needed, to obey the maximum connection limits, etc.
|
|
|
|
Opens a connection to the server and returns an appropriate
|
2002-06-19 06:39:00 +02:00
|
|
|
object."""
|
|
|
|
|
2002-07-03 15:04:40 +02:00
|
|
|
self.semaphore.acquire()
|
|
|
|
self.connectionlock.acquire()
|
2002-06-19 06:39:00 +02:00
|
|
|
imapobj = None
|
2002-07-03 15:04:40 +02:00
|
|
|
|
|
|
|
if len(self.availableconnections): # One is available.
|
2002-07-11 05:51:20 +02:00
|
|
|
# Try to find one that previously belonged to this thread
|
|
|
|
# as an optimization. Start from the back since that's where
|
|
|
|
# they're popped on.
|
|
|
|
threadid = thread.get_ident()
|
|
|
|
imapobj = None
|
|
|
|
for i in range(len(self.availableconnections) - 1, -1, -1):
|
|
|
|
tryobj = self.availableconnections[i]
|
|
|
|
if self.lastowner[tryobj] == threadid:
|
|
|
|
imapobj = tryobj
|
|
|
|
del(self.availableconnections[i])
|
|
|
|
break
|
|
|
|
if not imapobj:
|
|
|
|
imapobj = self.availableconnections[0]
|
|
|
|
del(self.availableconnections[0])
|
2002-07-03 15:04:40 +02:00
|
|
|
self.assignedconnections.append(imapobj)
|
2002-07-11 05:51:20 +02:00
|
|
|
self.lastowner[imapobj] = thread.get_ident()
|
2002-07-03 15:04:40 +02:00
|
|
|
self.connectionlock.release()
|
|
|
|
return imapobj
|
|
|
|
|
|
|
|
self.connectionlock.release() # Release until need to modify data
|
|
|
|
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
""" Must be careful here that if we fail we should bail out gracefully
|
|
|
|
and release locks / threads so that the next attempt can try...
|
|
|
|
"""
|
2002-11-05 00:15:42 +01:00
|
|
|
success = 0
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
try:
|
|
|
|
while not success:
|
|
|
|
# Generate a new connection.
|
|
|
|
if self.tunnel:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.connecting('tunnel', self.tunnel)
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
imapobj = UsefulIMAP4_Tunnel(self.tunnel)
|
|
|
|
success = 1
|
|
|
|
elif self.usessl:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.connecting(self.hostname, self.port)
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
imapobj = UsefulIMAP4_SSL(self.hostname, self.port,
|
2010-12-16 13:43:47 +01:00
|
|
|
self.sslclientkey, self.sslclientcert,
|
|
|
|
cacertfile = self.sslcacertfile)
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
else:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.connecting(self.hostname, self.port)
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
imapobj = UsefulIMAP4(self.hostname, self.port)
|
|
|
|
|
|
|
|
imapobj.mustquote = imaplibutil.mustquote
|
|
|
|
|
|
|
|
if not self.tunnel:
|
|
|
|
try:
|
|
|
|
# Try GSSAPI and continue if it fails
|
|
|
|
if 'AUTH=GSSAPI' in imapobj.capabilities and have_gss:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap',
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
'Attempting GSSAPI authentication')
|
2008-03-09 06:46:51 +01:00
|
|
|
try:
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
imapobj.authenticate('GSSAPI', self.gssauth)
|
2008-03-09 06:46:51 +01:00
|
|
|
except imapobj.error, val:
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
self.gssapi = False
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap',
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
'GSSAPI Authentication failed')
|
|
|
|
else:
|
|
|
|
self.gssapi = True
|
|
|
|
#if we do self.password = None then the next attempt cannot try...
|
|
|
|
#self.password = None
|
|
|
|
|
|
|
|
if not self.gssapi:
|
|
|
|
if 'AUTH=CRAM-MD5' in imapobj.capabilities:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap',
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
'Attempting CRAM-MD5 authentication')
|
|
|
|
try:
|
|
|
|
imapobj.authenticate('CRAM-MD5', self.md5handler)
|
|
|
|
except imapobj.error, val:
|
|
|
|
self.plainauth(imapobj)
|
|
|
|
else:
|
2008-03-09 06:46:51 +01:00
|
|
|
self.plainauth(imapobj)
|
Patch for error handling / separation of accounts etc.
Dear All,
I have made the attached patch to try and make offlineimap a bit more
stable in challenging situations. It's extremely useful in slow
connection environments - but sometimes if one account had the wrong
password or the connection went down then unfortunately the whole
program would crash.
I have tested this on our connection and tried throwing at it just about
every situation - connection, up down, up, down again, change password,
error whilst copying one message, etc. I have been running this patch
for the last 5 days or so syncing 6 accounts at the moment... It seems
to work and stay alive nicely (even if your connection does not)...
Hope that this can go in for the next release... Please let me know if
anyone notices any problems with this...
Regards,
-Mike
-- Attached file included as plaintext by Ecartis --
-- File: submit
From 1d6777cab23637eb830031c7cab0ae9b8589afd6 Mon Sep 17 00:00:00 2001
From: mike <mike@mikelaptop.(none)>
Date: Mon, 24 Aug 2009 19:37:59 +0430
Subject: [PATCH] This patch attempts to introduce a little more error handling - e.g.
if one account has an error because of a changed password or something
that should not affect the other accounts.
Specifically:
If one sync run has an issue this is in a try-except clause - if it
has an auto refresh period the thread will sleep and try again - this
could be quite useful in the event of the connection going down for a
little while, changed password etc.
If one folder cannot be created an error message will be displayed through
the UI and the program will continue (e.g. permission denied to create a folder)
If one message does not want to copy for whatever resaon an error message
will be displayed through the UI and at least the other messages will
be copied
If one folder run has an exception then the others will still run
2009-08-24 17:17:57 +02:00
|
|
|
# Would bail by here if there was a failure.
|
|
|
|
success = 1
|
|
|
|
self.goodpassword = self.password
|
|
|
|
except imapobj.error, val:
|
|
|
|
self.passworderror = str(val)
|
|
|
|
raise
|
|
|
|
#self.password = None
|
|
|
|
|
|
|
|
if self.delim == None:
|
|
|
|
listres = imapobj.list(self.reference, '""')[1]
|
|
|
|
if listres == [None] or listres == None:
|
|
|
|
# Some buggy IMAP servers do not respond well to LIST "" ""
|
|
|
|
# Work around them.
|
|
|
|
listres = imapobj.list(self.reference, '"*"')[1]
|
|
|
|
self.delim, self.root = \
|
|
|
|
imaputil.imapsplit(listres[0])[1:]
|
|
|
|
self.delim = imaputil.dequote(self.delim)
|
|
|
|
self.root = imaputil.dequote(self.root)
|
|
|
|
|
|
|
|
self.connectionlock.acquire()
|
|
|
|
self.assignedconnections.append(imapobj)
|
|
|
|
self.lastowner[imapobj] = thread.get_ident()
|
|
|
|
self.connectionlock.release()
|
|
|
|
return imapobj
|
|
|
|
except:
|
|
|
|
"""If we are here then we did not succeed in getting a connection -
|
|
|
|
we should clean up and then re-raise the error..."""
|
|
|
|
self.semaphore.release()
|
|
|
|
|
|
|
|
#Make sure that this can be retried the next time...
|
|
|
|
self.passworderror = None
|
|
|
|
if(self.connectionlock.locked()):
|
|
|
|
self.connectionlock.release()
|
|
|
|
raise
|
2002-06-19 06:39:00 +02:00
|
|
|
|
2002-07-03 15:04:40 +02:00
|
|
|
def connectionwait(self):
|
|
|
|
"""Waits until there is a connection available. Note that between
|
|
|
|
the time that a connection becomes available and the time it is
|
|
|
|
requested, another thread may have grabbed it. This function is
|
|
|
|
mainly present as a way to avoid spawning thousands of threads
|
|
|
|
to copy messages, then have them all wait for 3 available connections.
|
|
|
|
It's OK if we have maxconnections + 1 or 2 threads, which is what
|
|
|
|
this will help us do."""
|
2002-07-04 02:02:10 +02:00
|
|
|
threadutil.semaphorewait(self.semaphore)
|
2002-07-03 15:04:40 +02:00
|
|
|
|
2002-06-21 09:25:24 +02:00
|
|
|
def close(self):
|
2002-07-03 15:04:40 +02:00
|
|
|
# Make sure I own all the semaphores. Let the threads finish
|
|
|
|
# their stuff. This is a blocking method.
|
|
|
|
self.connectionlock.acquire()
|
2002-07-04 02:02:10 +02:00
|
|
|
threadutil.semaphorereset(self.semaphore, self.maxconnections)
|
2002-07-03 15:04:40 +02:00
|
|
|
for imapobj in self.assignedconnections + self.availableconnections:
|
|
|
|
imapobj.logout()
|
|
|
|
self.assignedconnections = []
|
|
|
|
self.availableconnections = []
|
2002-07-11 05:51:20 +02:00
|
|
|
self.lastowner = {}
|
Apply patch to fix autorefresh with Kerberos
Patch from Eric Dorland
Closes: #470875
From: Wouter Verhelst
Subject: kerberos authentication works only the first time
Date: Fri, 14 Mar 2008 09:28:37 +0100
Package: offlineimap
Version: 5.99.8
Severity: normal
Hi,
I have the "autorefresh" configuration option specified in my
.offlineimaprc, and am now using the kerberos authentication.
However, this kerberos authentication seems to work only the first
time
offlineimap tries to fetch mails. The next time, it fails with this
output:
Thread 'Account sync Test' terminated with exception:
Traceback (most recent call last):
File "/var/lib/python-support/python2.4/offlineimap/threadutil.py",
line 153, in run
Thread.run(self)
File "/usr/lib/python2.4/threading.py", line 422, in run
self.__target(*self.__args, **self.__kwargs)
File "/var/lib/python-support/python2.4/offlineimap/accounts.py",
line 119, in syncrunner
self.sync()
File "/var/lib/python-support/python2.4/offlineimap/accounts.py",
line 148, in sync
remoterepos.syncfoldersto(localrepos, [statusrepos])
File
"/var/lib/python-support/python2.4/offlineimap/repository/Base.py",
line 135, in syncfoldersto
srcfolders = src.getfolders()
File
"/var/lib/python-support/python2.4/offlineimap/repository/IMAP.py",
line 192, in getfolders
listresult = imapobj.list(directory =
self.imapserver.reference)[1]
File "/usr/lib/python2.4/imaplib.py", line 469, in list
typ, dat = self._simple_command(name, directory, pattern)
File "/usr/lib/python2.4/imaplib.py", line 1028, in _simple_command
return self._command_complete(name, self._command(name, *args))
File "/usr/lib/python2.4/imaplib.py", line 787, in _command
raise self.error(
error: command LIST illegal in state NONAUTH
2009-04-21 07:03:28 +02:00
|
|
|
# reset kerberos state
|
|
|
|
self.gss_step = self.GSS_STATE_STEP
|
|
|
|
self.gss_vc = None
|
|
|
|
self.gssapi = False
|
2002-07-03 15:04:40 +02:00
|
|
|
self.connectionlock.release()
|
|
|
|
|
2002-07-10 13:18:07 +02:00
|
|
|
def keepalive(self, timeout, event):
|
|
|
|
"""Sends a NOOP to each connection recorded. It will wait a maximum
|
|
|
|
of timeout seconds between doing this, and will continue to do so
|
|
|
|
until the Event object as passed is true. This method is expected
|
|
|
|
to be invoked in a separate thread, which should be join()'d after
|
|
|
|
the event is set."""
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive thread started')
|
2002-07-10 13:18:07 +02:00
|
|
|
while 1:
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: top of loop')
|
2009-08-12 21:49:58 +02:00
|
|
|
time.sleep(timeout)
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: after wait')
|
2002-07-10 13:18:07 +02:00
|
|
|
if event.isSet():
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: event is set; exiting')
|
2002-07-10 13:18:07 +02:00
|
|
|
return
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: acquiring connectionlock')
|
2002-07-10 13:18:07 +02:00
|
|
|
self.connectionlock.acquire()
|
|
|
|
numconnections = len(self.assignedconnections) + \
|
|
|
|
len(self.availableconnections)
|
|
|
|
self.connectionlock.release()
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: connectionlock released')
|
2002-07-10 13:18:07 +02:00
|
|
|
threads = []
|
2009-08-12 21:49:58 +02:00
|
|
|
imapobjs = []
|
2002-07-10 13:18:07 +02:00
|
|
|
|
|
|
|
for i in range(numconnections):
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: processing connection %d of %d' % (i, numconnections))
|
2009-08-12 21:49:58 +02:00
|
|
|
imapobj = self.acquireconnection()
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: connection %d acquired' % i)
|
2009-08-12 21:49:58 +02:00
|
|
|
imapobjs.append(imapobj)
|
|
|
|
thr = threadutil.ExitNotifyThread(target = imapobj.noop)
|
|
|
|
thr.setDaemon(1)
|
|
|
|
thr.start()
|
|
|
|
threads.append(thr)
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: thread started')
|
2003-06-02 21:06:18 +02:00
|
|
|
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: joining threads')
|
2002-07-10 13:18:07 +02:00
|
|
|
|
2009-08-12 21:49:58 +02:00
|
|
|
for thr in threads:
|
2002-07-10 13:18:07 +02:00
|
|
|
# Make sure all the commands have completed.
|
2009-08-12 21:49:58 +02:00
|
|
|
thr.join()
|
2002-07-10 13:18:07 +02:00
|
|
|
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: releasing connections')
|
2003-06-02 21:06:18 +02:00
|
|
|
|
2009-08-12 21:49:58 +02:00
|
|
|
for imapobj in imapobjs:
|
|
|
|
self.releaseconnection(imapobj)
|
|
|
|
|
2011-01-05 17:00:55 +01:00
|
|
|
self.ui.debug('imap', 'keepalive: bottom of loop')
|
2009-02-10 01:27:48 +01:00
|
|
|
|
2002-07-10 13:18:07 +02:00
|
|
|
class ConfigedIMAPServer(IMAPServer):
|
|
|
|
"""This class is designed for easier initialization given a ConfigParser
|
|
|
|
object and an account name. The passwordhash is used if
|
|
|
|
passwords for certain accounts are known. If the password for this
|
|
|
|
account is listed, it will be obtained from there."""
|
2003-04-18 04:18:34 +02:00
|
|
|
def __init__(self, repository, passwordhash = {}):
|
2002-07-10 13:18:07 +02:00
|
|
|
"""Initialize the object. If the account is not a tunnel,
|
|
|
|
the password is required."""
|
2003-04-18 04:18:34 +02:00
|
|
|
self.repos = repository
|
|
|
|
self.config = self.repos.getconfig()
|
|
|
|
usetunnel = self.repos.getpreauthtunnel()
|
|
|
|
if not usetunnel:
|
|
|
|
host = self.repos.gethost()
|
|
|
|
user = self.repos.getuser()
|
|
|
|
port = self.repos.getport()
|
|
|
|
ssl = self.repos.getssl()
|
2008-05-23 21:58:18 +02:00
|
|
|
sslclientcert = self.repos.getsslclientcert()
|
|
|
|
sslclientkey = self.repos.getsslclientkey()
|
2010-12-16 13:43:47 +01:00
|
|
|
sslcacertfile = self.repos.getsslcacertfile()
|
2003-04-18 04:18:34 +02:00
|
|
|
reference = self.repos.getreference()
|
2002-07-10 13:18:07 +02:00
|
|
|
server = None
|
|
|
|
password = None
|
2003-04-18 04:18:34 +02:00
|
|
|
|
|
|
|
if repository.getname() in passwordhash:
|
|
|
|
password = passwordhash[repository.getname()]
|
2002-07-10 13:18:07 +02:00
|
|
|
|
|
|
|
# Connect to the remote server.
|
|
|
|
if usetunnel:
|
2003-04-18 04:18:34 +02:00
|
|
|
IMAPServer.__init__(self, self.config, self.repos.getname(),
|
|
|
|
tunnel = usetunnel,
|
2002-07-10 13:18:07 +02:00
|
|
|
reference = reference,
|
2003-04-18 04:18:34 +02:00
|
|
|
maxconnections = self.repos.getmaxconnections())
|
2002-07-10 13:18:07 +02:00
|
|
|
else:
|
|
|
|
if not password:
|
2003-04-18 04:18:34 +02:00
|
|
|
password = self.repos.getpassword()
|
|
|
|
IMAPServer.__init__(self, self.config, self.repos.getname(),
|
2002-11-05 00:15:42 +01:00
|
|
|
user, password, host, port, ssl,
|
2003-04-18 04:18:34 +02:00
|
|
|
self.repos.getmaxconnections(),
|
2008-05-23 21:58:18 +02:00
|
|
|
reference = reference,
|
|
|
|
sslclientcert = sslclientcert,
|
2010-12-16 13:43:47 +01:00
|
|
|
sslclientkey = sslclientkey,
|
|
|
|
sslcacertfile = sslcacertfile)
|