Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
Date: Tue, 20 Aug 2002 10:36:31 +0200
From: Corinna Vinschen <corinna-cygwin AT cygwin DOT com>
To: cygwin AT cygwin DOT com
Subject: Re: Multiple users in fetchmail
Message-ID: <20020820103631.L26346@cygbert.vinschen.de>
Reply-To: cygwin AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
References: <20020811140204 DOT 3f1780c9 DOT jim DOT george AT blueyonder DOT co DOT uk> <20020812103113 DOT H17250 AT cygbert DOT vinschen DOT de> <20020812132847 DOT GB1928 AT tishler DOT net> <20020812153640 DOT R17250 AT cygbert DOT vinschen DOT de> <20020812151949 DOT GA2168 AT tishler DOT net> <20020812200316 DOT U17250 AT cygbert DOT vinschen DOT de> <20020819205443 DOT GA1836 AT tishler DOT net>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20020819205443.GA1836@tishler.net>
User-Agent: Mutt/1.3.22.1i

On Mon, Aug 19, 2002 at 04:54:43PM -0400, Jason Tishler wrote:
> Corinna,
> 
> > On Mon, Aug 12, 2002 at 11:19:49AM -0400, Jason Tishler wrote:
> > > On Mon, Aug 12, 2002 at 03:36:40PM +0200, Corinna Vinschen wrote:
> > > > On Mon, Aug 12, 2002 at 09:28:48AM -0400, Jason Tishler wrote:
> > > > > Grep-ing the fetchmail code, I get the following:
> > > > > 
> > > > >     $ grep 'set.*uid' *.c
> > > > >     sink.c:    seteuid(ctl->uid);
> > > > >     sink.c:    seteuid(0);
> > > > > 
> > > > > So, I presume that I will have to change the second hit above to:
> > > > > 
> > > > >     seteuid(18);
> > > > 
> > > > Better:
> > > > 
> > > >       uid_t orig_uid = getuid ();
> > > >       setuid (ctl->uid);
> > > > 
> > > >       [...]
> > > > 
> > > >       seteuid (orig_uid);
> > > 
> > > Thanks for the above suggestion -- it will be part of the final
> > > solution.
> 
> Did you really mean the following?
> 
>     uid_t orig_uid = geteuid (); // geteuid() not getuid()
>     seteuid (ctl->uid);          // seteuid() not setuid()
> 
>     [...]
> 
>     seteuid (orig_uid);
> 
> Note that fetchmail is using seteuid() not setuid().

Sure.

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:cygwin AT cygwin DOT com
Red Hat, Inc.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/