Displaying 20 results from an estimated 500 matches similar to: "replication and backend vpopmail"
2018 Oct 04
0
vpopmail
On 10/4/2018 7:27 AM, Rick Romero wrote:
>
> Quoting Eric Broch <ebroch at whitehorsetc.com
> <mailto:ebroch at whitehorsetc.com>>:
>
>>
>> On 10/4/2018 6:34 AM, Rick Romero wrote:
>>>
> Quoting Aki Tuomi <aki.tuomi at open-xchange.com
> <mailto:aki.tuomi at open-xchange.com>>:
>
>> On 03.10.2018 23:30, Eric Broch wrote:
2018 Oct 04
0
vpopmail
Quoting Rick Romero <rick at havokmon.com>:
> Quoting Eric Broch <ebroch at whitehorsetc.com>:
>
>> On 10/4/2018 7:27 AM, Rick Romero wrote:
>>> Quoting Eric Broch <ebroch at whitehorsetc.com
>>> <mailto:ebroch at whitehorsetc.com>>:
>>>
>>>> On 10/4/2018 6:34 AM, Rick Romero wrote:
>>>>> ?
>>>
2018 Oct 04
2
vpopmail
Quoting Eric Broch <ebroch at whitehorsetc.com>:
> On 10/4/2018 7:27 AM, Rick Romero wrote:
>>
>> Quoting Eric Broch <ebroch at whitehorsetc.com
>> <mailto:ebroch at whitehorsetc.com>>:
>>
>>>
>>> On 10/4/2018 6:34 AM, Rick Romero wrote:
>>>>
>> Quoting Aki Tuomi <aki.tuomi at open-xchange.com
>>
2018 Oct 04
3
vpopmail
Quoting Eric Broch <ebroch at whitehorsetc.com>:
> On 10/4/2018 6:34 AM, Rick Romero wrote:
>
>> ?
Quoting Aki Tuomi <aki.tuomi at open-xchange.com>:
> On 03.10.2018 23:30, Eric Broch wrote:
>
>> Hello list,
>>
>> I run Dovecot with the vpopmail driver and have found that it
>> authenticates against the clear text password in the vpopmail
2018 Oct 04
0
vpopmail
On 10/4/2018 6:34 AM, Rick Romero wrote:
>
> Quoting Aki Tuomi <aki.tuomi at open-xchange.com
> <mailto:aki.tuomi at open-xchange.com>>:
>
>> On 03.10.2018 23:30, Eric Broch wrote:
>>
>>> Hello list,
>>>
>>> I run Dovecot with the vpopmail driver and have found that it
>>> authenticates against the clear text password in the
2007 Feb 06
1
Problem with vpopmail auth
Hello,
I've install 1.021 and am having some problems getting vpopmail
authentication to work correctly (running 0.99 in production, upgrading
to 1.021). I'm using vpopmail-5.4.16. Here are the authentication
debug statements in the log, my dovecot.conf changes from default, and
the schema of my vpopmail database. Any ideas / suggestions? I've
commented out all authentication
2003 May 19
0
[PATCH] getpwnam() implementation in tftpd.c
Hi,
This patch implements a minimal getpwnam() function in tftpd.c.
The reason for the patch is that I needed tftpd to work in my embedded
system, which are without libnss*. The patch has been tested, and works
for me. Please consider it.
Best regards,
jules
--
Jules Colding <JuBColding at yorkref.com>
York Refrigeration
diff -urN tftp-hpa-0.34.orig/tftpd/Makefile
2001 Feb 28
2
[PATCH]: auth.c (pwcopy): Copy pw_gecos field when build for Cygwin
Hi,
the attached patch is very important for Cygwin. I don't know
how I could have missed that for months now :-( I hope this
can be included in 2.5.1p2.
The pw_gecos field in Cygwin's /etc/passwd contains Windows
specific authentication informations which let NT domain
users logon to a machine without the need to inform the
logon server (sshd in our case) about the name of the NT
2003 Dec 14
1
fakepw auth.c question
this is at the bottom of auth.c. What is it?
struct passwd *
fakepw(void)
{
static struct passwd fake;
memset(&fake, 0, sizeof(fake));
fake.pw_name = "NOUSER";
fake.pw_passwd =
"$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
fake.pw_gecos = "NOUSER";
fake.pw_uid = -1;
fake.pw_gid = -1;
fake.pw_class =
2009 Dec 14
2
vpopmail/mysql/quota
Hi All,
I'm new to the list and have a quota question. I am building a new server
with dovecot/qmail/vpopmail/mysql and
emails are sending and recieving fine when the quota is set to NOQUOTA, but
when the quota is changed qmail
doesn't deliver any messages. I have read the docs and still need some help
understanding the process for dovecot
quotas relating to the vpopmail mysql database
2002 Jun 25
0
[Bug 298] New: sshd fails to set user context, preventing all logins, also setgroups is failing
http://bugzilla.mindrot.org/show_bug.cgi?id=298
Summary: sshd fails to set user context, preventing all logins,
also setgroups is failing
Product: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: BSDI
Status: NEW
Severity: major
Priority: P2
Component: sshd
2008 Jan 23
0
strange issues with pam_winbind and sudo
I have two issues, potentially related, potentially not. First
off, a bit about my environment:
I am experiencing the same issues on two boxes, one of which is
running red hat linux ES 4 update 6 i386, the other running red hat
enterprise linux server release 5.1 x86_64 . Both appear to be
running samba 3.0.25b, both are members of an active directory
domain . There are 7 domain controllers in
2008 Mar 24
1
Authentication: Dovecot -> Vpopmail - > MySQL with one table per domain
Hi All,
I am using Dovecot 1.0.13 with Vpopmail (Qmail
Toaster current) backed by MySQL with one table per
domain (--disable-many-domains) . What I cannot figure
out is how to have Dovecot authenticate to Vpopmail
when Vpopmail uses one table per domain. Basically I
need dynamic SQL in the Dovecot-sql.conf file.
Currently I have:
password_query = select pw_clear_passwd as password
from
2001 Jun 21
1
pw_expire/pw_change in current portable openssh CVS bombs
The references to pw_expire and pw_change in pwcopy() in misc.c cause
compilation errors at least on solaris. How about doing a memcpy of the
whole structure and only explicitly setting those that need xstrdup?
That would work on openbsd and everywhere else.
- Dave Dykstra
--- misc.c.O Thu Jun 21 11:35:28 2001
+++ misc.c Thu Jun 21 11:36:09 2001
@@ -125,14 +125,10 @@
{
struct passwd *copy =
2009 Mar 13
2
New to list, got a quota question
Hello folks -
I'm running dovecot on top of qmail/vpopmail/mysql, serving up about
2500 mailboxes. Everything is running very smooth and fast.... I
recently upgraded dovecot to 1.1, so I'm trying to implement some extra
features like IMAP quotas.
I'm using the sql passdb, with the following config:
driver = mysql
connect = host=/var/lib/mysql/mysql.sock user=username
2018 Oct 04
2
vpopmail
Quoting Aki Tuomi <aki.tuomi at open-xchange.com>:
> On 03.10.2018 23:30, Eric Broch wrote:
>> Hello list,
>>
>> I run Dovecot with the vpopmail driver and have found that it
>> authenticates against the clear text password in the vpopmail
>> database. Is there a configuration option either at compile time, link
>> time, or a setting in one of the
2010 Oct 07
1
Qmail+Vpopmail+Mysql+Dovecot 2.x (Notes on a successful conversion)
SoI had a hell of a time converting my qmail install to dovecot 2.0.5,
so I thought I'd pass on what I learned.
1. When using vpopmail, do not use " --disable-many-domains". If you
do, you'll need to recompile vpopmail without that setting and use the
script found at
http://qmailrocks.thibs.com/downloads/scripts/migrate-vpopmail-many-domains
to collapse the tables.
2.
2017 May 12
0
Dovecot 2.2.29.1 + VPopMail 5.4.33
Hi all,
I have a fresh installation of a Vpopmail 5.4.33 + Dovecot 2.2.29.1 + SQL
As usual I followed the AuthDatabase/VPopMail wiki
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user, \
pw_clear_passwd AS password \
FROM vpopmail \
WHERE pw_name = '%n' AND pw_domain = '%d'
user_query = SELECT pw_dir as home, \
89 AS uid, 89 AS gid
2020 Mar 18
2
Headsup on feature removal
Hi Aki and Remo,
switch from vpopmail driver to SQL driver (if you are using vpopmail
with mysql as backend) is very simple.
First you need to setup the right query for vpopmail database:
# cat /etc/dovecot/dovecot-sql.conf.ext
### Vpopmail
driver = mysql
connect = host=192.168.1.2 dbname=vpopmail user=vpopmail password=Vp0pM4iL
default_pass_scheme = MD5-CRYPT
### Query to get a list of all
2005 Oct 13
2
mysql backend create user problem
Dear All,
wasn't sure my last question got posted, i decided to re-post with more
concise explanation of the problem i'm facing.
I have samba PDC (version 3.0.14a) working fine before with smbpasswd
backend.
a few weeks ago, we decide to move to mysql backend since we have email
server with mysql backend as well. I'm trying to use one username and
password for both email and samba