maillog's message

André de Oliveira Castanheira Rodrigues aocastanheira@cariocaengenharia.com.br
Thu, 01 Nov 2001 16:22:13 -0200 (BRST)


Hi,

Does anybody knows the meaning of this message ?

Nov  1 16:18:04 CCNEFS01 sendmail[18095]: QAA18095: Authentication-Warning: CCNE
FS01.Carioca: nobody set sender to aocastanheira@cariocaengenharia.com.br using
-f

It shows after sending a message from IMP 2.3.7.

Obrigado,
André Castanheira
Carioca Engenharia S/A
+55 21 3891-2200 r:2325


>From davidp@touringcyclist.com Date: Thu,  1 Nov 2001 12:43:33 -0600
Return-Path: <davidp@touringcyclist.com>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 59484 invoked from network); 1 Nov 2001 18:39:13 -0000
Received: from map.touringcyclist.com (HELO mail.touringcyclist.com) (64.7.26.42)
  by clark.horde.org with SMTP; 1 Nov 2001 18:39:13 -0000
Received: (qmail 4738 invoked by uid 84); 1 Nov 2001 18:43:34 -0000
Received: from davidp@touringcyclist.com by tcmail with qmail-scanner-0.95 (iscan: v3.1/v2.062-0402/855/26788. . Clean. Processed in 0.178778 secs); 01 Nov 2001 18:43:34 -0000
Received: from localhost (nobody@127.0.0.1)
  by localhost with SMTP; 1 Nov 2001 18:43:33 -0000
Received: from 192.168.3.60 ( [192.168.3.60])
	as user davidp@tcmail.tc.local by horde.tc.local with HTTP;
	Thu,  1 Nov 2001 12:43:33 -0600
Message-ID: <1004640213.3be197d581e9f@horde.tc.local>
Date: Thu,  1 Nov 2001 12:43:33 -0600
From: David Peoples <davidp@touringcyclist.com>
To: imp@lists.horde.org
References: <000201c1628f$1b8bb2b0$6400020a@homebase>
In-Reply-To: <000201c1628f$1b8bb2b0$6400020a@homebase>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
Subject: RE: [imp] Login (horde auth = 'imp') always returns "Login failed for some reason..."

> As near as I can tell, the three isset() and is_array() checks in
> IMP::setupSession() fail.  Somehow, HTTP_SESSION_VARS is not getting
> correctly populated.  I'm not quite sure how/where it is supposed to be
> populated.  David Peoples offered the suggestion that I switch to
> file-based session storage, but I haven't yet strapped on my
> belt-and-suspenders.  Is it still advisable to do so, or does the
> diagnostic output below give anyone a clue as to what's going wrong for
> me?

That's exactly the sequence of events I was seeing, where createSession() 
appeared to succeed but the setupSession() call in mailbox.php failed. 
Changing the PHP session storage fixed it for me, and I'm still convinced 
that is what is going on for you too, even if the test.php page didn't show 
it.

Since I had the test IMP installation set up as a "VirtualHost" in Apache, 
it was trivial to set PHP back to file-based session storage just for this 
section, without affecting the rest of the server. Write me back off-list if 
you need more details about my setup. (I don't mind posting it here, but 
just might be noise for the rest of the list readers.)

David

-- 
David Peoples  davidp@touringcyclist.com  http://www.touringcyclist.com
The Touring Cyclist, 11816 St. Charles Rock Rd, Bridgeton, MO 63044
tel: 314-739-4648  fax: 314-739-4972






>From nlin@newton.berkeley.edu Date: Thu,  1 Nov 2001 11:22:30 -0800
Return-Path: <nlin@newton.berkeley.edu>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 60935 invoked from network); 1 Nov 2001 19:22:31 -0000
Received: from webmail.decf.berkeley.edu (128.32.142.69)
  by clark.horde.org with SMTP; 1 Nov 2001 19:22:31 -0000
Received: (from apache@localhost)
	by webmail.decf.berkeley.edu (8.11.6/8.11.6) id fA1JMUk17947
	for imp@lists.horde.org; Thu, 1 Nov 2001 11:22:30 -0800
Received: from okepler.me.berkeley.edu ( [okepler.me.berkeley.edu])
	as user nlin@maxwell.berkeley.edu by webmail.decf.berkeley.edu with HTTP;
	Thu,  1 Nov 2001 11:22:30 -0800
Message-ID: <1004642550.3be1a0f64f540@webmail.decf.berkeley.edu>
Date: Thu,  1 Nov 2001 11:22:30 -0800
From: nlin@newton.berkeley.edu
To: imp@lists.horde.org
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Originating-IP: 128.32.142.3
Subject: patch to make turba sql search work w/ mult fields.

Okay.

Here's the patch for turba/lib/Driver/sql.php so that the search query is in 
format "WHERE (blah like blah) AND object_name = uid"  This is so that if 
you have multiple fields defined in search_fields, it'll not look at your 
whole db.  

I've tested it only w/ the compose expand name and turba advanced search.  
So it could break something else.....


*** sql.php     Thu Nov  1 11:21:35 2001
--- sql.php.orig        Thu Nov  1 11:15:16 2001
***************
*** 61,75 ****
              $glue = ' OR ';
          }
          
!         $where = '(';
          foreach ($criteria as $key => $val) {
              if (in_array($key, $strict_fields)) {
!                 if ($where != '(') {
!                     $where .= ' ) AND ';
                  }
                  $where .= $key . ' = ' . $this->db->quote($val);
              } else {
!                 if ($where != '(') {
                      $where .= $glue;
                  }
                  $where .= 'LOWER(' . $key . ') LIKE LOWER(' . 
$this->db->quote('%' . $val . '%') . ')';
--- 61,75 ----
              $glue = ' OR ';
          }
          
!         $where = '';
          foreach ($criteria as $key => $val) {
              if (in_array($key, $strict_fields)) {
!                 if ($where) {
!                     $where .= ' AND ';
                  }
                  $where .= $key . ' = ' . $this->db->quote($val);
              } else {
!                 if ($where) {
                      $where .= $glue;
                  }
                  $where .= 'LOWER(' . $key . ') LIKE LOWER(' . 
$this->db->quote('%' . $val . '%') . ')';
***************
*** 78,84 ****
          
          $query  = 'SELECT ' . implode(', ', $fields) . ' ';
          $query .= 'FROM ' . $this->table;
!         if ($where != '(') {
              $query .= ' WHERE ' . $where;
          }
          
--- 78,84 ----
          
          $query  = 'SELECT ' . implode(', ', $fields) . ' ';
          $query .= 'FROM ' . $this->table;
!         if ($where) {
              $query .= ' WHERE ' . $where;
          }
          



>From nlin@newton.berkeley.edu Date: Thu,  1 Nov 2001 11:32:45 -0800
Return-Path: <nlin@newton.berkeley.edu>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 61919 invoked from network); 1 Nov 2001 19:32:46 -0000
Received: from webmail.decf.berkeley.edu (128.32.142.69)
  by clark.horde.org with SMTP; 1 Nov 2001 19:32:46 -0000
Received: (from apache@localhost)
	by webmail.decf.berkeley.edu (8.11.6/8.11.6) id fA1JWji17973
	for imp@lists.horde.org; Thu, 1 Nov 2001 11:32:45 -0800
Received: from okepler.me.berkeley.edu ( [okepler.me.berkeley.edu])
	as user nlin@maxwell.berkeley.edu by webmail.decf.berkeley.edu with HTTP;
	Thu,  1 Nov 2001 11:32:45 -0800
Message-ID: <1004643165.3be1a35da255e@webmail.decf.berkeley.edu>
Date: Thu,  1 Nov 2001 11:32:45 -0800
From: nlin@newton.berkeley.edu
To: imp@lists.horde.org
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Originating-IP: 128.32.142.3
Subject: monthly renameing shows duplicate folders.


Hi

I have the latest imp cvs.

I have my prefs set up to rename my sent folder monthly.  Today, when I log 
in, the maintenance page says:

The current folder(s) "sent, sent, sent" will be renamed to "sent-oct-2001, 
sent-oct-2001, sent-oct-2001". 

Is it buggy because I use the sent folder instead of sent-mail?

nancy



>From jan@horde.org Date: Thu,  1 Nov 2001 22:00:50 +0100
Return-Path: <jan@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 63917 invoked from network); 1 Nov 2001 21:08:28 -0000
Received: from mailout06.sul.t-online.com (HELO mailout06.sul.t-online.de) (194.25.134.19)
  by clark.horde.org with SMTP; 1 Nov 2001 21:08:28 -0000
Received: from fwd06.sul.t-online.de 
	by mailout06.sul.t-online.de with smtp 
	id 15zP4V-0002zq-04; Thu, 01 Nov 2001 22:08:19 +0100
Received: from linux.wg.de (320034214675-0001@[217.80.111.88]) by fmrl06.sul.t-online.com
	with esmtp id 15zP4L-1INVLcC; Thu, 1 Nov 2001 22:08:09 +0100
Received: from localhost (localhost [127.0.0.1])
	by linux.wg.de (8.11.0/8.11.0/SuSE Linux 8.11.0-0.4) with ESMTP id fA1L0pk10764
	for <imp@lists.horde.org>; Thu, 1 Nov 2001 22:00:51 +0100
Received: from 192.168.60.1 ( [192.168.60.1])
	as user jan@mail.wg.de by linux.wg.de with HTTP;
	Thu,  1 Nov 2001 22:00:50 +0100
Message-ID: <1004648450.3be1b802afc51@linux.wg.de>
Date: Thu,  1 Nov 2001 22:00:50 +0100
From: Jan Schneider <jan@horde.org>
To: imp@lists.horde.org
References: <3BE18B9C.5060803@xaymaca.com>
In-Reply-To: <3BE18B9C.5060803@xaymaca.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Sender: 320034214675-0001@t-dialin.net
Subject: Re: [imp] extending authentication

Zitat von Vincent Stoessel <vincent@xaymaca.com>:

> Hello All,
> I have a php weboard app (phpBB) that I would
> love to use horde authication with. Has anyone tried
> to extend the aithentication scope of horde to other
> local apps/directories ?
> 
> I guess what I am saying is that I use imap auth
> currently in horde and I'd like to protect my phpBB
> directory as well.

That's easy. Include horde/lib/Auth.php. Auth::getAuth shoud give you the 
logged in user or false if the user didn't login.

Jan.

:::::::::::::::::::::::::::::::::::::::: 
AMMMa AG - discover your knowledge
:::::::::::::::::::::::::::
Detmolder Str. 25-33 :: D-33604 Bielefeld
fon +49.521.96878-0 :: fax  +49.521.96878-20
http://www.ammma.de
::::::::::::::::::::::::::::::::::::::::::::::


>From jan@horde.org Date: Thu,  1 Nov 2001 22:24:04 +0100
Return-Path: <jan@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 64957 invoked from network); 1 Nov 2001 21:28:21 -0000
Received: from mailout02.sul.t-online.com (HELO mailout02.sul.t-online.de) (194.25.134.17)
  by clark.horde.org with SMTP; 1 Nov 2001 21:28:21 -0000
Received: from fwd01.sul.t-online.de 
	by mailout02.sul.t-online.de with smtp 
	id 15zPNp-00043Q-0B; Thu, 01 Nov 2001 22:28:17 +0100
Received: from linux.wg.de (320034214675-0001@[217.80.111.88]) by fmrl01.sul.t-online.com
	with esmtp id 15zPNh-1bc6SXC; Thu, 1 Nov 2001 22:28:09 +0100
Received: from localhost (localhost [127.0.0.1])
	by linux.wg.de (8.11.0/8.11.0/SuSE Linux 8.11.0-0.4) with ESMTP id fA1LO5k10915
	for <imp@lists.horde.org>; Thu, 1 Nov 2001 22:24:05 +0100
Received: from 192.168.60.1 ( [192.168.60.1])
	as user jan@mail.wg.de by linux.wg.de with HTTP;
	Thu,  1 Nov 2001 22:24:04 +0100
Message-ID: <1004649844.3be1bd74ad540@linux.wg.de>
Date: Thu,  1 Nov 2001 22:24:04 +0100
From: Jan Schneider <jan@horde.org>
To: imp@lists.horde.org
References: <1004638932.3be192d51c7f0@webmail.cariocaengenharia.com.br>
In-Reply-To: <1004638932.3be192d51c7f0@webmail.cariocaengenharia.com.br>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Sender: 320034214675-0001@t-dialin.net
Subject: Re: [imp] maillog's message

The user on you system that actually send the mail composed in imp is the 
user under which your webserver is running. In your case 'nobody'.

To set the right Sender in the email message (not nobody@FS01.Carioca but 
aocastanheira@cariocaengenharia.com.br) we use the sendmail -f (from) 
parameter.

Jan.

Zitat von André de Oliveira Castanheira Rodrigues 
<aocastanheira@cariocaengenharia.com.br>:

> Hi,
> 
> Does anybody knows the meaning of this message ?
> 
> Nov  1 16:18:04 CCNEFS01 sendmail[18095]: QAA18095:
> Authentication-Warning: CCNE
> FS01.Carioca: nobody set sender to aocastanheira@cariocaengenharia.com.br
> using
> -f
> 
> It shows after sending a message from IMP 2.3.7.
> 
> Obrigado,
> André Castanheira
> Carioca Engenharia S/A
> +55 21 3891-2200 r:2325
> 
> -- 
> IMP mailing list: http://horde.org/imp/
> Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe@lists.horde.org
> 
> 


:::::::::::::::::::::::::::::::::::::::: 
AMMMa AG - discover your knowledge
:::::::::::::::::::::::::::
Detmolder Str. 25-33 :: D-33604 Bielefeld
fon +49.521.96878-0 :: fax  +49.521.96878-20
http://www.ammma.de
::::::::::::::::::::::::::::::::::::::::::::::


>From jan@horde.org Date: Thu,  1 Nov 2001 22:26:44 +0100
Return-Path: <jan@horde.org>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 64970 invoked from network); 1 Nov 2001 21:28:22 -0000
Received: from mailout02.sul.t-online.com (HELO mailout02.sul.t-online.de) (194.25.134.17)
  by clark.horde.org with SMTP; 1 Nov 2001 21:28:22 -0000
Received: from fwd01.sul.t-online.de 
	by mailout02.sul.t-online.de with smtp 
	id 15zPNp-00043Q-09; Thu, 01 Nov 2001 22:28:17 +0100
Received: from linux.wg.de (320034214675-0001@[217.80.111.88]) by fmrl01.sul.t-online.com
	with esmtp id 15zPNg-1bc6SWC; Thu, 1 Nov 2001 22:28:08 +0100
Received: from localhost (localhost [127.0.0.1])
	by linux.wg.de (8.11.0/8.11.0/SuSE Linux 8.11.0-0.4) with ESMTP id fA1LQjk10935
	for <imp@lists.horde.org>; Thu, 1 Nov 2001 22:26:45 +0100
Received: from 192.168.60.1 ( [192.168.60.1])
	as user jan@mail.wg.de by linux.wg.de with HTTP;
	Thu,  1 Nov 2001 22:26:44 +0100
Message-ID: <1004650004.3be1be14ecce2@linux.wg.de>
Date: Thu,  1 Nov 2001 22:26:44 +0100
From: Jan Schneider <jan@horde.org>
To: imp@lists.horde.org
References: <1004643165.3be1a35da255e@webmail.decf.berkeley.edu>
In-Reply-To: <1004643165.3be1a35da255e@webmail.decf.berkeley.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
User-Agent: Internet Messaging Program (IMP) 2.3.7-cvs
X-Sender: 320034214675-0001@t-dialin.net
Subject: Re: [imp] monthly renameing shows duplicate folders.

Zitat von nlin@newton.berkeley.edu:

> 
> Hi
> 
> I have the latest imp cvs.
> 
> I have my prefs set up to rename my sent folder monthly.  Today, when I
> log 
> in, the maintenance page says:
> 
> The current folder(s) "sent, sent, sent" will be renamed to
> "sent-oct-2001, 
> sent-oct-2001, sent-oct-2001". 
> 
> Is it buggy because I use the sent folder instead of sent-mail?

No, it seems to be a bug. I assume you have at least three identities that 
all use the same sent-mail folder?

Jan.

:::::::::::::::::::::::::::::::::::::::: 
AMMMa AG - discover your knowledge
:::::::::::::::::::::::::::
Detmolder Str. 25-33 :: D-33604 Bielefeld
fon +49.521.96878-0 :: fax  +49.521.96878-20
http://www.ammma.de
::::::::::::::::::::::::::::::::::::::::::::::


>From r.chalabi@umist.ac.uk Date: Thu,  1 Nov 2001 21:30:38 +0000
Return-Path: <r.chalabi@umist.ac.uk>
Mailing-List: contact imp-help@lists.horde.org; run by ezmlm
Delivered-To: mailing list imp@lists.horde.org
Received: (qmail 66763 invoked from network); 1 Nov 2001 21:36:11 -0000
Received: from cloudburst.umist.ac.uk (mail@130.88.119.66)
  by clark.horde.org with SMTP; 1 Nov 2001 21:36:11 -0000
Received: from hail.umist.ac.uk ([130.88.120.74])
	by cloudburst.umist.ac.uk with esmtp (Exim 3.22 #1)
	id 15zPVR-00046i-00
	for imp@lists.horde.org; Thu, 01 Nov 2001 21:36:09 +0000
Received: from localuser by hail.umist.ac.uk with local (Exim 3.31 #2)
	id 15zPQ6-0000CN-00
	for imp@lists.horde.org; Thu, 01 Nov 2001 21:30:38 +0000
Received: from 213.122.78.232 ( [213.122.78.232]) by webmail1.umist.ac.uk with HTTP;
	Thu,  1 Nov 2001 21:30:38 +0000
Message-ID: <1004650238.3be1befe24a18@webmail1.umist.ac.uk>
Date: Thu,  1 Nov 2001 21:30:38 +0000
From: Rachid Chalabi <r.chalabi@umist.ac.uk>
To: imp@lists.horde.org
References: <1004643165.3be1a35da255e@webmail.decf.berkeley.edu> <1004650004.3be1be14ecce2@linux.wg.de>
In-Reply-To: <1004650004.3be1be14ecce2@linux.wg.de>
MIME-Version: 1.0
Content-Type: text/plain
Content-Transfer-Encoding: 8bit
User-Agent: based on Internet Messaging Program (IMP) 2.3.7-cvs
Subject: Re: [imp] monthly renaming shows duplicate folders.

I can confirm the bug with 4 identities. On a related issue with identities,
when I send an email using an identity from the ddrop down box, I get the full 
name of the "default identity " i.e. the identity chosen in the preference 
system.

Rachid Chalabi


Quoting Jan Schneider <jan@horde.org>:

> Zitat von nlin@newton.berkeley.edu:
> 
> > 
> > Hi
> > 
> > I have the latest imp cvs.
> > 
> > I have my prefs set up to rename my sent folder monthly.  Today, when I
> > log 
> > in, the maintenance page says:
> > 
> > The current folder(s) "sent, sent, sent" will be renamed to
> > "sent-oct-2001, 
> > sent-oct-2001, sent-oct-2001". 
> > 
> > Is it buggy because I use the sent folder instead of sent-mail?
> 
> No, it seems to be a bug. I assume you have at least three identities that 
> all use the same sent-mail folder?
> 
> Jan.
> 
> :::::::::::::::::::::::::::::::::::::::: 
> AMMMa AG - discover your knowledge
> :::::::::::::::::::::::::::
> Detmolder Str. 25-33 :: D-33604 Bielefeld
> fon +49.521.96878-0 :: fax  +49.521.96878-20
> http://www.ammma.de
> ::::::::::::::::::::::::::::::::::::::::::::::
> 
> -- 
> IMP mailing list: http://horde.org/imp/
> Archive: http://marc.theaimsgroup.com/?l=imp&r=1&w=2
> Frequently Asked Questions: http://horde.org/faq/
> To unsubscribe, mail: imp-unsubscribe@lists.horde.org
> 
>