Displaying 20 results from an estimated 1000 matches similar to: "Temporary Failures"
2011 Oct 24
5
Marathon Day 6 of First Install: MySQL Connection Problem
Hi;
This is my 6th day installing my first Postfix/Dovecot installation. The Postfix mailing list indicates I've got the MTA under control so now I'm seeking your help with the MDA. I get these errors with legitimate email addresses:
Oct 24 11:47:38 myserver dovecot: auth-worker: Error: mysql(localhost): Connect failed to database (postfix): Access denied for user
2011 Oct 25
3
Temporary Failure that's Permanent!
Hi;
I continue to be plagued with this error:
Oct 25 10:49:18 myserver postfix/pipe[3712]: 0423257901AB: to=<foo at bar.com>, relay=dovecot, delay=109318, delays=109318/0.14/0/0.1, dsn=4.3.0, status=deferred (temporary failure
It's been a week that I've been working day and night to get this fixed.
I forgot to add this information:
[root]# doveconf -n
auth_mechanisms = plain
2011 Oct 28
1
Upgrading MySQL
Hi;
Upon trying to run django, I get this error:
ImproperlyConfigured: MySQLdb-1.2.1p2 or newer is required; you have 1.2.1
If I run yum update mysql I don't upgrade (expected). What do?
TIA,
Jack
2011 Oct 20
1
Don't Know Where Emails Are Or What's Happening
Hi;
I'm new to Dovecot and Postfix.
I'm trying to enable these with MySQL support and postfixadmin. I've
got all those services up and running (finally!); however, I can't
figure out if the emails are being received and/or stored. I'm pretty
sure Postfix is receiving them because I dealt with certain errors
and they're now gone. Here's some data:
Dovecot ver.
0.91
2007 Dec 13
4
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
Hello all,
I am implementing some simple obfuscation transformations in LLVM. One
of the obfuscations involves searching for particular constants, and
"unrolling" them throughout a procedure using arithmetic. In effect,
certain constants are broken up into smaller constants and recombined
as needed using the appropriate operators. I perform this on
intermediate LLVM instructions.
After
2012 Jun 08
3
upgrade from 1.0.5 to 2.1.7
Hello!
I want to upgrade the docevot-installation from v 1.0.5 to 2.1..7
Now I get the following executing
doveconf -n -c /etc/dovecot/dovecot.conf > /home/mail1/dovecot-2.conf
doveconf: Warning: Obsolete setting in /etc/dovecot/dovecot.conf:217: add auth_ prefix to all settings inside auth {} and remove the auth {} section completely
doveconf: Warning: Obsolete setting in
2007 Dec 14
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
Matt,
The LLVMCore library provides constant folding automatically. So, when
your obfuscated module is read in and the assembler re-creates your
constants, the arithmetic is done automatically and the constants are
folded. To see where this is done, see lib/VMCore/ConstantFold.cpp
Reid.
On Thu, 2007-12-13 at 02:22 -0600, Matt Fredrikson wrote:
> Hello all,
>
> I am implementing some
2012 Jan 04
2
POP3 problems
Migrated a 1.0.2 server to 2.0.16 (same old box).
IMAP seems working Ok.
POP3 give problems with some clients (Outlook 2010 and Thunderbird
reported).
Seems authentication problem
Below my doveconf -n (debug enbled, but no answer found to the problems)
Any hints?
Thanks, P.
# doveconf -n
# 2.0.16: /etc/dovecot/dovecot.conf
doveconf: Warning: NOTE: You can get a new clean config file with:
2004 Aug 06
3
The future for open streaming solutions at the BBC?
Hi all,
I recently emailed a query to the maintainers of BBC London website
(http://bbc.co.uk/london) asking if they had any plans to move away from
Real Server as a means for streaming audio and Video of their live radio
and tv broadcasts to something a bit more cross platform like OGG/Vorbis
or even MP3's. The reply I received was :
"I'm afraid we only plan to use Real Player
2007 Jul 14
4
Zaptel/mISDN and call transfer
Hi list,
I am searching for a possibility to do a certain call transfer method
which is called "path replacement" in QSIG. But I want to do that in
DSS1 (EuroISDN). If my asterisk does a call transfer I want the machine
to signalize on dchan that the call path has to be replaced to a direct
connect between the caller and the called, i.e. my machine is to hang up
after the transfer and
2007 Jun 13
2
Domain part / auth_username_format
Hey folks,
I want to authenticate a pop3 user without a domain part and then use
the domain part to specify a Maildir subfolder to grab messages from.
So, this was my attempt:
# use the domain part to access a subfolder
mail_location = maildir:/mail/%n/Maildir/%d
# strip of the domain part for authentication purposes
auth_username_format = %n
login: testuser at .INBOX.SubFolder
2018 Nov 22
2
Remote and local connections at the same time (Centos 7)
Hello!
I was investigating libvirt a year ago regarding it's remote control. I
figured out necessary settings for configuring remote control in ubuntu
(setting flags in libvirt setting files). Now I have several questions:
1) Are these flags the same for Centos?
They did not worked for me.
My flags for ubuntu are (for tcp for example):
/etc/libvirt/libvirtd.conf : listen_tls = 0, listen_tcp
2019 Jul 11
2
Getting login stats
Hello,
I'm trying to get some IMAP auth stats on a Dovecot 2.3.6 instance, but whatever I declare in metric, it always show 0.
What I want basically is how many IMAP auth attempts there was on the server, and optional a way to filter on the auth attempt status (successful or failed).
My server uses a simple auth (with LDAP backend) and supports only "auth_mechanisms = plain login"
2011 Oct 18
2
Fried Email Server! Perl Problem
I hate it when I crash my email server. Here's what tailing /var/log/qmail/qmail-smtp/current gives me:
[root at toast jack]# tail /var/log/qmail/qmail-smtpd/current
@400000004e9ddbd031610f54 tcpserver: status: 0/20
@400000004e9ddbd72c767c04 tcpserver: status: 1/20
@400000004e9ddbd72c7ab60c tcpserver: pid 12039 from 210.76.164.235
@400000004e9ddbd739a20d1c tcpserver: ok 12039
2007 Dec 14
0
[LLVMdev] Obfuscation Transformations Clobbered by Unkown Optimizations
On Thu, 13 Dec 2007, Matt Fredrikson wrote:
> After I run opt on an un-obfuscated bitcode file to produce an
> obfuscated bitcode file, I verify that my transformations were placed
ok
> in the file using llvm-dis. At this point, the changes appear to have
> been made. However, if I run the obfuscated bitcode file through llc
> to produce x86 assembly, the obfuscations vanish. I
2007 Mar 25
1
dovecot authentication & exim in rc27
[introduction: new to the list, used dovecot w/exim as MTA in
simple ways for 2 years, blah blah blah]
i'm trying to get exim to use dovecot auth with a copy of
rc27 and am missing something that's probably quite simple.
specifically, how does one configure the authenticators
in dovecot.conf for rc27? the auth section of the default
config file installed in rc27 doesn't entirely
2013 Aug 08
1
multiple passdbs and auth sockets
I have a few systems which run dovecot 1.x as the authentication backend
for Postfix, with multiple auth { } sections like this one, each one
with a different passdb and its own socket:
auth ldap-10 {
passdb ldap {
args = /etc/dovecot/dovecot-ldap-10.conf
}
socket listen {
client {
path = /var/spool/postfix/private/auth-10
mode = 0666
}
}
}
I need multiple
2017 Jul 15
1
Dovecot Statistics
I tried to setup statistics as shown on the Statistics wiki page. I encountered a problem with the mail_plugins for imap. in the protocol imap configuration the wiki shows adding imap_stats to mail_plugins. When I do that, dovecot stops authenticating and throwing error messages:
Jul 15 12:47:46 mail dovecot: imap(doug)[10.0.1.251]<osGhcGBUmsgKAAH7>: Error: Couldn't load required
2014 Mar 31
1
Fwd: Dovecot not honoring configuration settings (auth failure)
boah how i hate that "reply all" attitude leading to break
"reply to list" and leads in off-list replies
-------- Original-Nachricht --------
Betreff: Re: [Dovecot] Dovecot not honoring configuration settings (auth failure)
Datum: Tue, 01 Apr 2014 00:02:42 +0200
Von: Reindl Harald <h.reindl at thelounge.net>
Organisation: the lounge interactive design
An: noloader at
2014 Jun 06
1
Re: Libvirt Python Bindings - Remote Connection using openAuth.
Martin,
What do you mean by libvirt credentials...?
-Sijo
On Fri, Jun 6, 2014 at 1:57 PM, Martin Kletzander <mkletzan@redhat.com>
wrote:
> On Fri, Jun 06, 2014 at 01:06:55PM +0530, Sijo Jose wrote:
>
>> Hi,
>> I am using libvirt with python binding, and I want to connect to a remote
>> host.
>> I was able to connect after making ssh certificate, but It