Displaying 20 results from an estimated 200 matches similar to: "getpeername() and SSL"
2005 Mar 11
3
IP in rawlog
Hi,
i'm using dovecot with rawlog enabled. Well, i need to log the IP of the
user, too. Could you give me a hint, how this can be implemented?
Thanks and regards,
Andreas Goertz.
2018 Jan 30
2
test-net.c failure
test-net.c:79: Assert failed: strcmp(net_ip2addr(&ip), "::5") == 0
test-net.c:83: Assert failed: strcmp(net_ip2addr(&ip), "::5") == 0
net_ip2addr() ........................................................ : FAILED
Hello,
Is it possible to disable DOVECOT_IPV6?
We do not use IPv6 (and hope we shall never do on e-mails).
-------------- next part --------------
An HTML
2018 Jan 31
1
test-net.c failure
I meant to disable it when configuring the source, and thus when running make check. The test fails on 2.3.0 only, the 2.2 branch did not have this problem.
Sent from ProtonMail Mobile
On Wed, Jan 31, 2018 at 05:56, Prasad K <prasad at cloudcomputer.in> wrote:
> The dovecot.conf file from CentOS-7 contains this :
>
> --- snip ---
> # A comma separated list of IPs or hosts
2011 Jul 11
1
drac plugin "net_ip2addr() failed: Operation not permitted"
Hi, I'm trying to get the drac plugin working (again) but I'm stuck with the following message:
Restarting IMAP/POP3 mail server: dovecotEDRAC: net_ip2addr() failed: Operation not permitted
This is on a Debian Squeeze box, dovecot version 1.2.15-7, drac version 1.12
Looking at the source it should print the IP in the brackets of net_ip2addr. The fact that it's just empty made me
2006 Jun 29
3
Secure connection from "localhost" in jails
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Dear dovecot developers,
first: thanks for this really cool imapd, on my server it serves some
hundred domains, all in all some thousand users, some having hundred
thousand mails in their Maildirs (their spam boxes mostly).
Since I put this installation in an FreeBSD geli encrypted disc image I
had no choice but to choose an imapd with clever
2011 Feb 24
1
concurrent users.
If I have:
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter RubyCAS::Filter
before_filter :fetch_operator
include SessionsHelper
private
def fetch_operator
@operator ||= session[:cas_user] && Operator.find_by_uid(session[:cas_user])
log_out if @operator.nil?
end
end
@operator is available for all controllers of my
2008 Jun 15
2
RSpec story failing because of routing error on "/"
Greetings!
Here''s the problem.
When running tests on the restful_authentication plugin, I am getting
a routing error on "/".
Which I don''t really understand, because the route "/" certainly does
exist as I can confirm when I run ./script/server and point my browser
at http://localhost:3000/
Here is an example of the error I am getting when I run
2004 Jun 14
1
vpopmail and open smtp relay
I'm using vpopmail's POP-before-SMTP auth, but dovecot don't support it,
so I'm wrote this patch
==============================================================
diff -Naur dovecot-0.99.10.5/src/auth/auth-login-interface.h
dovecot-0.99.10.5-patched/src/auth/auth-login-interface.h
--- dovecot-0.99.10.5/src/auth/auth-login-interface.h Sun May 18
16:26:28 2003
+++
2003 Nov 04
0
PATCH: make local IP address available to auth modules
The attached patch makes the local IP address to which the client
connected available to the authentication modules; i.e., the local IP
address is available for substitution as %i for the mysql and pgsql
modules. We needed this feature to support thousands of our legacy
accounts which are authenticated by username/local_part (not the full
email address) and IP address (one per domain).
Timo,
2018 Jan 31
0
test-net.c failure
The dovecot.conf file from CentOS-7 contains this :
--- snip ---
# A comma separated list of IPs or hosts where to listen in for
connections.
# "*" listens in all IPv4 interfaces, "::" listens in all IPv6 interfaces.
# If you want to specify non-default ports or anything more complex,
# edit conf.d/master.conf.
#listen = *, ::
--- snip ---
HTH
--
Prasad
On 30/01/18 11:35
2006 Jan 16
0
passdb-pam: PAM_RHOST on FreeBSD >= 5.0 (where PAM != Linux-PAM)
This is actually something I had on my mind to write about in the past
few -stable and alpha releases, but did not get to and instead always
patched myself. Now having updated to the latest snapshot (which may
be released as beta1), I stumbled on it again:
In src/auth/passdb-pam.c, where the client host is passed to PAM, the
code looks like this:
#ifdef PAM_RHOST
const char *host =
2014 Aug 05
1
[Patch] mail_log plugin supports remote, local ip addresses
Hello,
In attached file you will find patch for mail_log plugin to output
local, remote ip addresses. It may be usefull for somebody.
To enable support for dovecot 2.2.x versions change the line 'include
"net.h"' instead of 'include "network.h"'.
Thank you.
P.S. Sorry, for previous empty message.
--
With Best Regards,
Vitaliy T.
-------------- next part
2004 Jun 14
1
PAM_RHOST item
A little problem, which is bugging me: when using PAM authentication,
Dovecot (0.99.5) does not set the PAM_RHOST item, so the PAM modules
cannot know who the client is. We need this for some PAM module doing
access control.
Changing passdb-pam.c to pam_set_item it seems trivial, but I'm bugged
as to how to get the client name from there. It seems not to be
available in the auth_request
2019 Jan 03
7
gcc -> clang
Please, use clang instead of gcc. Code quality can only profit from it. I just compiled 2.3.4 and compiler stderr is full of interesting problems.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20190103/83b1b813/attachment.html>
2008 Nov 07
6
Cannot get the libwrap patch work
Hello there,
I have been trying to make the patch work for libwrap(TCP
Wrappers) posted on http://dovecot.org/patches
<http://dovecot.org/patches%20Patch%20of%201.1> Patch of 1.1 but could not
get it work. Any help will be highly appreciated. After compiling and
running it I get error "Error: login_tcp_wrappers can't be used because
Dovecot wasn't built with
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,
2010 Nov 16
1
Help - custom vpopmail
Hi,
First, I'm not sure if dovecot should alter this, but it seems vpopmail
writes the IP into the 'remote_ip' field instead of the auth type. Dovecot
still writes the auth type.? I want both.
So I modified my vpopmail install to write an additional field into the
lastauth table.? My custom vpopmail writes the remote IP into remote_ip,
and the auth type into a 'type'
2008 Jun 13
0
"Disable non webmail IMAP access" in vpopmail and Dovecot
Hello,
i'm using in my installation qmail+vpopmail and now I have migrated from
courier-imap to dovecot.
Dovecot is very much faster with large mailbox than courier-imap.
But I have a problem.
vpopmail has a feature that allows you to "Disable non webmail IMAP access",
many webmail using imap as if they were, and they are, a client IMAP.
vpopmail give me the ability to
2008 Sep 25
1
patch for passdb-vpopmail in v1.1.3
I need pop-before-smtp to work with vpopmail (yes, yes, I know, don't
ask). Enabling the code to update the relays file brings a small bug
to light, fixable with the following patch:
--- passdb-vpopmail.c~ 2008-09-25 15:06:47.000000000 +0100
+++ passdb-vpopmail.c 2008-09-25 15:07:14.000000000 +0100
@@ -31,9 +31,9 @@
}
if (((vpw->pw_gid & NO_IMAP) != 0 &&
-
2015 Nov 02
2
auth_request_get_var_expand test fails on big endian arches.
Hi,
when running the tests in a big endian machine, I get the following error:
0 / 1 tests failed
test-auth-request-var-expand.c:99: Assert failed: strcmp(str_c(str),
test_output) == 0
test-auth-request-var-expand.c:104: Assert failed: strcmp(str_c(str),
test_output) == 0
auth request var expand short and long ............................... :
FAILED
test: random seed #1 was 1446803094
auth