Hi folks,

I use qmail and bincimap (1.2.9, last freebsd port) with ucspi-ssl and vpopmail (5.5.0).

I'm trying to use imaps-b4-smtp. Pop3-b4-smtp (with qmail-pop3 and ucspi-ssl) works great, but with bincimap I see that problem: when I open the email client, and I check the email throught imap, my IP is added in open-smtp, and the roaming works fine. But when $RELAYCLEAR clear my open-smtp, and I check my emails, I can see the emails, but I can't see my IP in open-smtp.

my bincimap run script:

#!/bin/sh
exec 2>&1

CERTFILE="/var/qmail/certs/pop3s.cert"
KEYFILE="/var/qmail/certs/pop3s.key"
DHFILE="/var/qmail/certs/mail.dh"
export CERTFILE KEYFILE DHFILE

exec \
/usr/local/bin/softlimit -m 10000000 \
/usr/local/bin/sslserver -e -c 100 -u 0 -g 0 -l 0 -HDRP 0 993 \
/usr/local/bin/bincimap-up \
--logtype=multilog --conf=/usr/local/etc/bincimap/bincimap.conf \
-- \
/usr/local/vpopmail/bin/vchkpw \
/usr/local/bin/bincimapd


my bincimap.conf:

/* -*- mode:java -*- */

// 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
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.

// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307,
// USA.

// Global configuration file for Binc IMAP. Some settings in this file
// can be overrun with command line arguments.

//----------------------------------------------------------------------------
Authentication {
    allow plain auth in non ssl = "yes",            /* allow login or
                                                      authenticate
                                                      when not in
                                                      SSL/TLS mode */

    auth penalty = 4,                              /* on auth failure,
                                                    * server sleeps so
                                                    * many seconds
                                                    * before allowing
                                                    * client to
                                                    * authenticate
                                                    * again.
                                                    */
    disable starttls = "yes"
}

//----------------------------------------------------------------------------
Security {
    jail path = "/usr/local/etc/bincimap/supervise/imaps",
    jail user = "nobody",
    jail group = "nobody"
}

//----------------------------------------------------------------------------
Log {
    type = "multilog",                             /* supports
                                                    * multilog or
                                                    * syslog or
                                                    * stderr (for testing).
                                                    */
    environment ip variable = "TCPREMOTEIP"
}

//----------------------------------------------------------------------------
Mailbox {
    depot = "Maildir++",                           /* Use Maildir++ style
                                                    * depot. */

    type = "Maildir",                              /* only Maildir
                                                    * support */

    path = "Maildir",                              /* default path */

    auto create inbox = "yes",                     /* create INBOX in
                                                    * given format if
                                                    * it doesn't
                                                    * exist.
                                                    */

    auto subscribe mailboxes = "INBOX",            /* list mailboxes
                                                    * in one string,
                                                    * seperated by
                                                    * commas
                                                    */

IW bincimap.conf Row 119 Col 1 5:45 Ctrl-K H for help
umask = "077" /* use this umask
* when creating
* mailboxes, or
* when copying and
* appending
* messages.
*/
}


//----------------------------------------------------------------------------
Session {
    idle timeout = 1860,                           /* idle timeout in
                                                      seconds */

    auth timeout = 60,                             /* timeout before
                                                      auth in
                                                      seconds */

    transfer timeout = 1200,                       /* timeout per
                                                      transferred com
                                                      unit (I/O) */

    transfer buffer size = 1024                    /* number of bytes
                                                      to buffer before
                                                      passing on to
                                                      client. */
}

//----------------------------------------------------------------------------
SSL {
    pem file = "",                                    /* private key and
                                                      certificate
                                                      chain PEM file
                                                      name */

    ca file = "",                                  /* file to use as
                                                      certificate
                                                      authority */

    cipher list = "",

    verify peer = "no"
}

//----------------------------------------------------------------------------
      /* $Id: bincimap.conf.in,v 1.2 2003/08/23 12:53:25 andreaha Exp $ */


Could you help me? Thanks for any suggestion Regards Andrea

Reply via email to