Displaying 20 results from an estimated 72 matches for "donpac".
2007 Apr 19
2
dovecot-auth %c variable is not working
In "doc/variables.txt"
> For dovecot-auth there are also these variables:
>
> %c - "secured" string with SSL, TLS and localhost connections.
> Otherwise empty.
%c does not appear to be working. I am trying to use it in a MySQL query userdb and passdb query and it is always empty string.
Timo, any chance you could post a patch that fixes this?
Thanks,
2007 May 22
1
[PATCH] add some const's
Add some const's. I think patch is self-explaining :)
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
# HG changeset patch
# User Andrey Panin <pazke at donpac.ru>
# Date 1179812865 -14400
# Node ID a486a946dfa135e8c7d4083aacaef45d5386aa11
# Parent e1b3043c0d90cd346cc8cbfb6d1de3917dda5121
Constify struct mech_module.
dif...
2004 Jul 27
3
[PATCH 0/10] NTLM patchset submission
...authentication
support patchset.
It contains common code in src/lib-ntlm directory, Samba compatible
NTLM password scheme and authentication mechanism itself.
All patches are against 1.0-test30.
Please take a look.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
2004 Jul 22
1
[PATCH] add LOGIN authentication mechanism
Hello,
attached patch (1.0-test29) adds LOGIN authentication mechanism.
Tested with KMail and seems working.
Please consider applying.
Best regards.
P.S. I also have NTLM authentication working and plan to
submit it RSN.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test29.vanilla/src/auth/mech-login.c dovecot-1.0-test29/src/auth/mech-login.c
--- dovecot-1.0-test29.vanilla/src/auth/mech-login.c 1970-01-01 03:00:00.000000000 +0300
+++ dovecot-1.0-t...
2004 Sep 30
1
[PATCH] NTLM2 support
Hello,
as pointed by Andrew Bartlett NTLM2 authentication support
is missing in dovecot. Attached patch adds it.
Tested and works for me.
Please consider applying.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test46.vanilla/src/auth/mech-ntlm.c dovecot-1.0-test46/src/auth/mech-ntlm.c
--- dovecot-1.0-test46.vanilla/src/auth/mech-ntlm.c 2004-08-31 13:28:03.000000000 +0400
+++ dovecot-1.0-test...
2004 Oct 25
0
[PATCH] Request for testing: BSD kqueue ioloop handler
...ch uses BSD kqueue API.
It compiles and survives my small test program, but not thoroughly
tested because I have no suitable BSD machine to torture.
Brave owners of (Free|Net|Open)BSD please test and report results :)
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test51.vanilla/configure.in dovecot-1.0-test51/configure.in
--- dovecot-1.0-test51.vanilla/configure.in 2004-10-21 06:37:24.000000000 +0400
+++ dovecot-1.0-test51/configure.in 2004-10-...
2004 Aug 30
0
[PATCH] [RFC] epoll based ioloop handler (now with patch)
Sorry, I forgot to attach patch to previous mail.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-cvs.vanilla/configure.in dovecot-cvs/configure.in
--- dovecot-cvs.vanilla/configure.in 2004-08-09 23:14:02.000000000 +0400
+++ dovecot-cvs/configure.in 2004-08-25 19:37:47.000000000 +0400...
2012 Sep 04
2
[PATCH] Generalize HMAC implementation
...nst unsigned char context_digest[CRAM_MD5_CONTEXTLEN]);
+
+
+#endif
diff --git a/src/lib/hmac-md5.c b/src/lib/hmac-md5.c
deleted file mode 100644
--- a/src/lib/hmac-md5.c
+++ /dev/null
@@ -1,101 +0,0 @@
-/*
- * HMAC-MD5 (RFC-2104) implementation.
- *
- * Copyright (c) 2004 Andrey Panin <pazke at donpac.ru>
- *
- * CRAM-MD5 (RFC 2195) compatibility code
- * Copyright (c) 2003 Joshua Goodall <joshua at roughtrade.net>
- *
- * This software is released under the MIT license.
- */
-
-#include "lib.h"
-#include "hmac-md5.h"
-#include "safe-memset.h"
-
-void hmac_...
2006 Jun 26
2
[PATCH, RFC 3/13] OTP: parity table
...otp/otp-parity.c dovecot/src/lib-otp/otp-parity.c
--- dovecot.vanilla/src/lib-otp/otp-parity.c 1970-01-01 03:00:00.000000000 +0300
+++ dovecot/src/lib-otp/otp-parity.c 2006-06-23 13:44:31.161891112 +0400
@@ -0,0 +1,29 @@
+/*
+ * OTP parity table.
+ *
+ * Copyright (c) 2006 Andrey Panin <pazke at donpac.ru>
+ *
+ * This software is released under the MIT license.
+ */
+
+#include "lib.h"
+#include "otp.h"
+
+const unsigned char parity_table[256] = {
+ 0, 1, 2, 3, 1, 2, 3, 0, 2, 3, 0, 1, 3, 0, 1, 2,
+ 1, 2, 3, 0, 2, 3, 0, 1, 3, 0, 1, 2, 0, 1, 2, 3,
+ 2, 3, 0, 1, 3, 0, 1, 2, 0...
2004 Dec 09
1
Exim4 authentication patch
...icator has only one parameter 'server_socket', it's value
used as path for dovecot's authentication socket. Authenticator
can be used for server authentication only.
Hope it will be useful for someone.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urdpNx build-Linux-i386 -x Local exim-4.43.vanilla/scripts/MakeLinks exim-4.43/scripts/MakeLinks
--- exim-4.43.vanilla/scripts/MakeLinks 2004-10-05 12:32:08.000000000 +0400
+++ exim-4.43/scripts/MakeLinks 2004-12-09 15:38:...
2007 Apr 05
7
Problems using GFS2 and clustered dovecot
I am trying to use dovecot. I've got a GFS2 shared volume on two servers
with dovecot running on both. On one server at a time, it works.
The test I am trying is to attach two mail programs (MUA) via IMAPS
(Thunderbird and Evolution as it happens). I've attached one mail
program to each IMAPS server. I am trying to move emails around in one
program (from folder to folder), and then
2008 Nov 18
0
[PATCH] dovecot-1.2: fix build with Sun C compiler
This small patch fixes dovecot-1.2 build with Sun C compiler.
-------------- next part --------------
# HG changeset patch
# User Andrey Panin <pazke at donpac.ru>
# Date 1226930237 0
# Node ID f1457d1f761a52fdbbb20faf52e06100c93725a0
# Parent dfe39e9a9e783a7a1060721c2247689bcdd0b743
Fix build error with Sun C compiler.
diff -r dfe39e9a9e78 -r f1457d1f761a src/lib-storage/index/shared/shared-list.c
--- a/src/lib-storage/index/shared/shared-list.c Sun...
2008 Feb 29
1
Dovecot Cyrus query
Hi All,
I have a client that is currently using cyrus but wants to use dovecot
(1.0.rc15) sasl authentication.
Is it possible to have the sasl authentication without having the
dovecot binary running.
Derwyn
===================================================================
sms START NETCORE to 575758 to get updates on Netcore's enterprise
products and services
sms START MYTODAY to
2007 Mar 15
1
Bug in dovecot 1.0 rc27
Hi,
My compiler AIX 5.2, complained about the following:
cc -qlanglvl=ansi -DHAVE_CONFIG_H -I. -I../../../.. -I../../../../src/lib -I../../../../src/lib-mail -I../../../../src/lib-imap -I../../../../src/lib-index -I../../../../src/lib-storage -I../../../../src/lib-storage/index -I/usr/local/include -O2 -c mbox-file.c
"mbox-sync-private.h", line 50.17: 1506-009 (S) Bit-field
2007 Jan 29
1
popa3d migration
Hello,
I'm sure there is no good answer to my question, but it doesn't take
much to ask, so I will.
I am about to migrate my current Dovecot IMAP + Popa3d mailbox server
to Maildir.
I need to keep both protocols (IMAP and POP3) and will be switching to
Dovecot on both.
The question is simple - is there any way to keep POP3 UIDs through
migration, so people won't get duplicates
2004 Jul 09
1
bug in openssl proxy code (1.0-test24) ?
...pop3 server, issues STLS command and
then drops connection dovecot starts flooding syslog with
this message repeated endlessly:
Jul 9 14:31:40 smtp dovecot: pop3-login: SSL_accept() syscall failed: EOF [80.254.111.9]
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://dovecot.org/pipermail/dovecot/attachments/20040709/d68c6cae/attachment-0001.bin>...
2004 Jul 20
0
[PATCH] fix build error with HAVE_MODULES not set
Hello,
attached trivial patch (against 1.0-test28) fixes build error
with unset HAVE_MODULES. Error is caused by missing second
argument of module_dir_load() stub.
Please consider applying.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test28.vanilla/src/lib/module-dir.c dovecot-1.0-test28/src/lib/module-dir.c
--- dovecot-1.0-test28.vanilla/src/lib/module-dir.c 2004-05-31 01:07:59.000000000 +0400
+++ dovecot-1.0-test...
2004 Jul 20
0
[PATCH] fix MD5 code buglet
Hello,
md5_final() function contains minor buglet, it clears first
4 bytes of md5_context instead of whole structure. Patch
attached.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test28.vanilla/src/lib/md5.c dovecot-1.0-test28/src/lib/md5.c
--- dovecot-1.0-test28.vanilla/src/lib/md5.c 2004-04-28 00:04:20.000000000 +0400
+++ dovecot-1.0-test28/src/lib/md5.c 2004...
2004 Jul 22
0
[PATCH] POP3 CAPA command RFC violation
...pace separated list of SASL mechanisms
which are supported. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Dovecot sends SASL capability as list of AUTH=FOO pairs. Looks like
copy-paste from IMAP code. Patch attached.
Best regards.
--
Andrey Panin | Linux and UNIX system administrator
pazke at donpac.ru | PGP key: wwwkeys.pgp.net
-------------- next part --------------
diff -urpNX /usr/share/dontdiff dovecot-1.0-test29.vanilla/src/pop3-login/client-authenticate.c dovecot-1.0-test29/src/pop3-login/client-authenticate.c
--- dovecot-1.0-test29.vanilla/src/pop3-login/client-authenticate.c 2004-07-...
2004 Aug 23
1
1.0-test33
http://dovecot.org/test/
I think I found and fixed the last bug that was giving me problems. Now
that Dovecot has been successfully working for a few hours, time for a
new test release :)
This release has major changes, so there might still be some bugs left.
Be careful.
If you're upgrading from previous 1.0-test release, you must delete all
existing dovecot.index.log files or you will get