Re: [courier-users] Configure Scripts Not Finding Resources Installed on FreeBSD

2017-01-25 Thread Gordon Messmer

On 12/26/2016 08:57 PM, Michael S. Scaramella, Esq. wrote:
My project to install and configure Courier on our DigitalOcean hosted 
FreeBSD 11.0 based VPS is now substantially further along.



It's a little late to be of help, but I've sent patches for the 
courier-authlib and courier "ports" to their respective maintainers.  
Hopefully they'll be up to date soon.




ports-courier.patch.gz
Description: application/gzip


ports-courier-authlib.patch.gz
Description: application/gzip


ports-courier-files.patch.gz
Description: application/gzip
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Configure Scripts Not Finding Resources Installed on FreeBSD

2016-12-26 Thread Michael S. Scaramella, Esq.
Dear Sam, Matus, et al.:

My project to install and configure Courier on our DigitalOcean hosted 
FreeBSD 11.0 based VPS is now substantially further along. This message is to 
report what installation steps work reliably on a current FreeBSD system. I 
have updated the subject header of this message to better reflect its scope.

Matus appropriately suggested that I seek help from the FreeBSD 
community. Unfortunately, FreeBSD support for Courier seems stalled at version 
0.65.3_4 , which I discovered has 
problems on FreeBSD 11. The FreeBSD courier-unicode package 
 is current at version 1.4, 
but using it as the basis for installing courier-authlib causes that 
installation to fail without any reported error. The FreeBSD courier-authlib 
package  is now at 
version 0.66.3, which is behind the current 0.66.4 version. I tried to install 
the current Courier version 0.76.3 atop the FreeBSD courier-unicode and 
courier-authlib packages, but that failed. Ultimately, I found that it was 
necessary to install the current courier-unicode-devel package atop 
courier-unicode 1.4 before courier-authlib could be installed successfully. 
This was suggested as a possibility by the courier-authlib configure script. I 
should note that the static message displayed by the script still references 
“Courier Unicode Library 1.2.”

Making the courier installation scripts work properly required 
abandonment of expectations that the scripts would be able to automatically 
find all necessary resources installed in standard ways on a FreeBSD 11 system. 
Adoption of Sam’s helpful suggestion about passing CPPFLAGS to the configure 
scripts made it possible to move beyond the impasse that I initially wrote 
about. Long and careful review of the configure scripts enabled me to develop 
configure commands that should work with any standard FreeBSD system. (For 
anyone curious about the differences between Linux distributions and FreeBSD, 
DigitalOcean publishes [a] Comparative Introduction to FreeBSD for Linux Users 
,
 which is a good resource.)

The following configure commands presume that several users and groups 
have been created on the FreeBSD system. As suggested in the Courier 
installation instructions, I created a user and user group named “courier.” I 
also created users and user groups for the roles of Courier Administrator and 
Courier Webmail. Those two user accounts have home directories where the 
respective website files are stored. Those sites are securely hosted by Apache 
running on the same VPS.

The following configure command can be used to configure the 
installation from source code of both courier-unicode and courier-unicode-dev:

./configure \
CPPFLAGS="-I/usr/include -I/usr/local/include -I/usr/local/include/courier" \
LDFLAGS="-L/usr/lib -L/usr/local/lib -L/usr/local/lib/courier" \
--prefix=/usr/local \
--exec-prefix=/usr/local \
--sysconfdir=/usr/local/etc/courier \
--localstatedir=/var \
--includedir=/usr/local/include/courier \
--libdir=/usr/local/lib/courier \
--enable-dependency-tracking

Next, the following configure command can be used to configure the 
installation from source code of courier-authlib:

./configure \
CPPFLAGS="-I/usr/include -I/usr/local/include -I/usr/local/include/libidn 
-I/usr/local/include/courier" \
LDFLAGS="-L/usr/lib -L/usr/local/lib -L/usr/local/lib/courier" \
--prefix=/usr/local \
--exec-prefix=/usr/local \
--sysconfdir=/usr/local/etc/courier \
--localstatedir=/var \
--includedir=/usr/local/include/courier \
--libdir=/usr/local/lib/courier \
--enable-dependency-tracking \
--enable-ltdl-install \
--with-ltdl-include=/usr/local/include \
--with-ltdl-lib=/usr/local/lib \
--with-mailuser=courier \
--with-mailgroup=courier

Then, the following configure command can be used to configure the 
installation from source code of courier:

./configure \
CPPFLAGS="-I/usr/include -I/usr/local/include -I/usr/local/include/libidn 
-I/usr/local/include/courier" \
LDFLAGS="-L/usr/lib -L/usr/local/lib -L/usr/local/lib/courier 
-L/usr/local/lib/courier/courier-authlib" \
COURIERAUTHLIB=/usr/local/lib/courier/courier-authlib \
--prefix=/usr/local/ \
--exec-prefix=/usr/local/ \
--sysconfdir=/usr/local/etc/courier \
--localstatedir=/var \
--includedir=/usr/local/include/courier \
--libdir=/usr/local/lib/courier \
--with-cachedir=/var/cache/webmail-logincache \
--with-webadmindir=/usr/home/courier-admin/courierwebadmin \
--with-certsdir=/usr/home/courier-admin/.pki-certs \
--enable-imageurl=/home/courier-webmail/www/docs/images \
--enable-https \
--enable-mimecharset=UTF-8 \
--enable-mimetypes=/usr/local/etc/mime.types

 I hope that these commands serve as helpful examples for others 

Re: [courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-18 Thread PICCORO McKAY Lenz
2016-04-15 11:05 GMT-04:30  :
> Hello Piccoro,
>
> Thank you...
>
> I am now Debian-free, after 17 years.
>
> Courier does most the productive and major part of my mass communication
> system and I am very happy with it.
one friend of my already are made a new distro for production purposes
too (venos)

courier are so awesome, due are very hard and strong to manipulate and
very funtional and light
in near future i try when i not using debina (and become debian-free)
introduce that friend of my to use courier and not qmail patched!

>
> Rosario

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-15 Thread courier
Hello Piccoro,

Thank you...

On Thu, Apr 14, 2016 at 09:08:05AM -0430, PICCORO McKAY Lenz wrote:
> Sam means that the sendmail program must reside in /usr/sbin follow
> some distro specific standar and not in another place like /usr/bin or
> /sbin/ or similar..

That is for me liberation not to use "distro". I have self-compiled
everything and installed courier. It works now, obviously.

It is true that I have expected configuration files to be in different
locations, and I prefer it to be left as in the package. My habits are
from "distros". This way, I am learning more.

> i got
> vnxpos00:/etc/courier# testmxlookup intranet1.net.ve
> Soft error.
> vnxpos00:/etc/courier#

It works on my side, thank you, I was looking for that small tool.

> but i must move manually the sendmail to /usr/sbin due the installer
> does not put there the binary

I was thinking that it has to be in /usr/sbin due to various
indoctrinations on "distros". There is no need to put it there, even
though I have placed a symbolic link.

> debian put some  binaries in /usr/lib/courier and the user accesible
> moved manually to /usr/sbin due installer does not are capable of that
> using configure script

I am now Debian-free, after 17 years.

Courier does most the productive and major part of my mass communication
system and I am very happy with it.

Rosario

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-14 Thread Gordon Messmer
On 04/14/2016 02:38 AM, cour...@rcdrun.com wrote:
> only that does not install sendmail in /usr/sbin where most other
> software expects it to be.

On rpm based systems, the "alternatives" tool will be used to put 
several links where they're expected:

/usr/sbin/alternatives --install /usr/sbin/sendmail mta 
/usr/lib/courier/bin/sendmail 91 \
--slave /usr/bin/mailq mta-mailq /usr/lib/courier/bin/mailq \
--slave /usr/bin/rmail mta-rmail /usr/lib/courier/bin/rmail \
--slave /usr/bin/newaliases mta-newaliases 
/usr/lib/courier/sbin/makealiases


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-14 Thread PICCORO McKAY Lenz
Sam means that the sendmail program must reside in /usr/sbin follow
some distro specific standar and not in another place like /usr/bin or
/sbin/ or similar..

i have same problem when compiling from sources (around the problem of
DNS that not working)

i got
vnxpos00:/etc/courier# testmxlookup intranet1.net.ve
Soft error.
vnxpos00:/etc/courier#

but i must move manually the sendmail to /usr/sbin due the installer
does not put there the binary

debian put some  binaries in /usr/lib/courier and the user accesible
moved manually to /usr/sbin due installer does not are capable of that
using configure script
Lenz McKAY Gerardo (PICCORO)
http://qgqlochekone.blogspot.com


2016-04-14 6:35 GMT-04:30 Sam Varshavchik :
> cour...@rcdrun.com writes:
>
>> I am unpacking courier from the sources and use this command line:
>>
>>   $ ./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc/courier
>>
>> only that does not install sendmail in /usr/sbin where most other
>> software expects it to be.
>>
>> What to do to get sendmail in /usr/sbin?
>
>
> You can use --exec-prefix=/usr/sbin to put all the binaries there.
>
> But I don't know what "most other software" that is. sendmail is not a
> root-only executable. It can be executed by non-root userids just fine.
>
>
> --
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers
> of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial!
> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
> ___
> courier-users mailing list
> courier-users@lists.sourceforge.net
> Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
>

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-14 Thread Sam Varshavchik

cour...@rcdrun.com writes:


I am unpacking courier from the sources and use this command line:

  $ ./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc/courier

only that does not install sendmail in /usr/sbin where most other
software expects it to be.

What to do to get sendmail in /usr/sbin?


You can use --exec-prefix=/usr/sbin to put all the binaries there.

But I don't know what "most other software" that is. sendmail is not a root- 
only executable. It can be executed by non-root userids just fine.




pgpfZepuzX2PJ.pgp
Description: PGP signature
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] ./configure option to install sendmail in /usr/sbin

2016-04-14 Thread courier
I am unpacking courier from the sources and use this command line:

  $ ./configure --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc/courier

only that does not install sendmail in /usr/sbin where most other
software expects it to be.

What to do to get sendmail in /usr/sbin?

Rosario

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure error on Debian

2013-05-05 Thread Stefan Hornburg (Racke)
After the release of Debian Squeeze, I'm going to produce new Debian packages 
for Courier Authlib
and Courier.

The build of Courier Authlib fails as shown below.

I found this thread,
http://courier-mail-server.10983.n7.nabble.com/Rebuilding-courier-authlib-with-libmysqld-dev-and-libmysqlcppcon-dev-Now-Results-in-an-Error-td20387.html,
but there was no solution to the problem.

Any advice?

Regards
 Racke

--snip--
racke@argus:~/debian/courier$ debaux-build courier-authlib
dpkg-buildpackage: source package courier-authlib
dpkg-buildpackage: source version 0.65.0-1
dpkg-buildpackage: source changed by Stefan Hornburg (Racke) ra...@linuxia.de
 dpkg-source --before-build courier-authlib-0.65.0
dpkg-buildpackage: host architecture amd64
 fakeroot debian/rules clean
dh_testdir
chmod +x debian/courier_perms
dh_testroot
rm -f stamp-build stamp-install
[ ! -f Makefile ] || /usr/bin/make distclean
dh_clean
 dpkg-source -b courier-authlib-0.65.0
dpkg-source: warning: no source format specified in debian/source/format, see 
dpkg-source(1)
dpkg-source: info: using source format `1.0'
dpkg-source: info: building courier-authlib in 
courier-authlib_0.65.0.orig.tar.gz
dpkg-source: info: building courier-authlib in courier-authlib_0.65.0-1.diff.gz
dpkg-source: warning: file 
courier-authlib-0.65.0/debian/courier-authdaemon.lintian has no final newline 
(either original or modified version)
dpkg-source: warning: file 
courier-authlib-0.65.0/debian/courier-authlib-ldap.docs has no final newline 
(either original or modified version)
dpkg-source: warning: file 
courier-authlib-0.65.0/debian/courier-authlib-postgresql.docs has no final 
newline (either original or modified version)
dpkg-source: warning: file 
courier-authlib-0.65.0/debian/courier-authlib-postgresql.files has no final 
newline (either original or modified version)
dpkg-source: warning: executable mode 0755 of 'debian/courier_perms' will not 
be represented in diff
dpkg-source: info: building courier-authlib in courier-authlib_0.65.0-1.dsc
 debian/rules build
dh_testdir
chmod +x debian/courier_perms
if [ ! -f stamp-build ]; then \
if [ -d /usr/include/postgresql/8.0/libpq_fe.h ]; then \
/bin/bash ./configure --prefix=/usr 
--mandir=\${prefix}/share/man --with-authdaemonvar=/var/run/courier/authdaemon 
CFLAGS=`dpkg-buildflags --get CFLAGS` CPPFLAGS=`dpkg-buildflags --get 
CPPFLAGS` LDFLAGS=`dpkg-buildflags --get LDFLAGS` -lcrypt 
--sysconfdir=/etc/courier --with-pkgconfdir=/etc/courier 
--libexecdir=\${prefix}/lib/courier --datadir=\${prefix}/lib/courier 
--localstatedir=/var/lib/courier --sbindir=\${exec_prefix}/sbin 
--with-mailuser=daemon --with-mailgroup=daemon --without-socks --with-authpam 
--with-authpipe --without-authpwd --with-authmysql 
--with-mysql-includes=/usr/include/mysql --with-mysql-libs=/usr/lib 
--with-authmysqlrc=/etc/courier/authmysqlrc --with-authpgsql 
--with-pgsql-includes=`pg_config
--includedir` --with-pgsql-libs=/usr/lib 
--with-authpgsqlrc=/etc/courier/authpgsqlrc --without-authshadow 
--with-authdaemonvar=/var/run/courier/authdaemon --with-authldap 
--with-authldaprc=/etc/courier/authldaprc --with-authcram --with-db=gdbm 
--without-fcgi --with-htmllibdir=/usr/share/sqwebmail 
--with-ispell=/usr/bin/ispell --enable-userdb --enable-syslog=1 
--disable-root-check \
--with-postgresql-includes=/usr/include/postgresql/8.0 \
 /usr/bin/make  touch stamp-build; \
else \
/bin/bash ./configure --prefix=/usr 
--mandir=\${prefix}/share/man --with-authdaemonvar=/var/run/courier/authdaemon 
CFLAGS=`dpkg-buildflags --get CFLAGS` CPPFLAGS=`dpkg-buildflags --get 
CPPFLAGS` LDFLAGS=`dpkg-buildflags --get LDFLAGS` -lcrypt 
--sysconfdir=/etc/courier --with-pkgconfdir=/etc/courier 
--libexecdir=\${prefix}/lib/courier --datadir=\${prefix}/lib/courier 
--localstatedir=/var/lib/courier --sbindir=\${exec_prefix}/sbin 
--with-mailuser=daemon --with-mailgroup=daemon --without-socks --with-authpam 
--with-authpipe --without-authpwd --with-authmysql 
--with-mysql-includes=/usr/include/mysql --with-mysql-libs=/usr/lib 
--with-authmysqlrc=/etc/courier/authmysqlrc --with-authpgsql 
--with-pgsql-includes=`pg_config
--includedir` --with-pgsql-libs=/usr/lib 
--with-authpgsqlrc=/etc/courier/authpgsqlrc --without-authshadow 
--with-authdaemonvar=/var/run/courier/authdaemon --with-authldap 
--with-authldaprc=/etc/courier/authldaprc --with-authcram --with-db=gdbm 
--without-fcgi --with-htmllibdir=/usr/share/sqwebmail 
--with-ispell=/usr/bin/ispell --enable-userdb --enable-syslog=1 
--disable-root-check \
--with-postgresql-includes=/usr/include/postgresql \
 /usr/bin/make  touch stamp-build; \
fi \
fi
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p

Re: [courier-users] Configure error on Debian

2013-05-05 Thread Sam Varshavchik

Stefan Hornburg (Racke) writes:

After the release of Debian Squeeze, I'm going to produce new Debian  
packages for Courier Authlib

and Courier.

The build of Courier Authlib fails as shown below.

I found this thread,
http://courier-mail-server.10983.n7.nabble.com/Rebuilding-courier-authlib- 
with-libmysqld-dev-and-libmysqlcppcon-dev-Now-Results-in-an-Error- 
td20387.html,

but there was no solution to the problem.

Any advice?


This needs to be debugged further than the point I was able to, just by  
reading the logs. This does appear to be the same issue from that thread. I  
don't recall any follow-up to that.


You should be able to confirm this by looking at config.log.


pgpOYXebk6k2S.pgp
Description: PGP signature
--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure authlib --with-mailgroup=1001 ...error about groupid1000??

2008-04-20 Thread Jan Müller
 -- Forwarded message --
 From: Sam Varshavchik [EMAIL PROTECTED]
 To: courier-users@lists.sourceforge.net
 Date: Wed, 16 Apr 2008 19:33:10 -0400
 Subject: Re: [courier-users] ./configure authlib --with-mailgroup=1001 
 ...error about groupid1000??
 Jan Müller writes:


  I'm trying to install courier-authlib:
  ./configure --with-mailuser=1000 --with-mailgroup=1001
 
  I'll get this error message:
  Cannot obtain information for groupid 1000: Success
 

  Both options take the user and group name, not a numerical ID.

Hi Sam,
the problem was probably caused by previous incomplete installation of
courier using user 1000, hence the error message. Thank you for your
tip.
Jan
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] ./configure authlib --with-mailgroup=1001 ...error about groupid1000??

2008-04-16 Thread Jan Müller
I'm trying to install courier-authlib:
./configure --with-mailuser=1000 --with-mailgroup=1001

I'll get this error message:
Cannot obtain information for groupid 1000: Success

There is no makefile.

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure authlib --with-mailgroup =1001 ...error about groupid1000??

2008-04-16 Thread Sam Varshavchik

Jan Müller writes:


I'm trying to install courier-authlib:
./configure --with-mailuser=1000 --with-mailgroup=1001

I'll get this error message:
Cannot obtain information for groupid 1000: Success


Both options take the user and group name, not a numerical ID.



pgpKF2PrPbMvZ.pgp
Description: PGP signature
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] configure errors while trying to configure courier-authlib-0.60.2 -- SOLVED

2008-01-25 Thread [EMAIL PROTECTED]
Quoting [EMAIL PROTECTED] [EMAIL PROTECTED]:

 Quoting Sam Varshavchik [EMAIL PROTECTED]:

 [EMAIL PROTECTED] writes:

 Quoting Sam Varshavchik [EMAIL PROTECTED]:


 Look in the config.log file in the subdirectory where this configure
 script reported this error. The config.log should contain a log of the
 compiler errors that will point to the real problem.

 This is what I'm getting from config.log

 First:

 configure:24898: checking sys/time.h usability
 configure:24915: gcc -c ?I?h?m?/?p?p?a?l?i?c?u?e? -g -O2 -Wall -I..
   -I./..  conftest.c 5
 gcc: ?I?h?m?/?p?p?a?l?i?c?u?e?: No such file or directory
 configure:24921: $? = 1
 configure: failed program was:
 | /* confdefs.h.  */

 I don't understand the unprintable characters in the config.log,

 If you did not specify any non-default parameters to the configure
 script, or did not set any of the configuration variables, this looks
 like a hardware problem, most likely bad RAM. Run memtest86 and see
 what happens.

 Either that, or your tarball is corrupted. Check the tarball's GPG
 signature, to verify that you do not have a damaged tarball.

 memtest86 reports that the memory is clean: 0 errors reported.

 so I set about the verify the tarball and found out something interesting:

 courier-authlib-0.60.1
 courier-authlib-0.60.0

 all do the same thing at the same place over the same header files.

 I compiled from source all of DJBs tools on this box and this is the
 first real problem I've seen.

 The fact that other versions of courier-authlib have similar failures
 makes me suspect that 0.60.2 is possibly not the problem, the fact
 that the exact same errors over the exact same files makes me wonder
 if maybe the devel packages were corrupt somehow.

 But that doesnt make sense either as I'm sure that if the devel
 packages for Centos 5.1 were hosed somehow, that thousands of server
 operators would be complaining all over the place.

 This is starting to smell strange.

 Any other hints or things to check?


 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2008.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 courier-users mailing list
 courier-users@lists.sourceforge.net
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



When I tested the above I rebooted the server late last night after  
having tested everything else I discussed.

Somehow today, one reboot later, everything is fine, no ./configure  
errors Not sure what difference the reboot made, but it made it.

Thanks Sam for the pointers



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure errors while trying to configure courier-authlib-0.60.2

2008-01-24 Thread [EMAIL PROTECTED]
I run qmail and want to use courier-authlib and imap to add imap  
services to my server.

i've done this several times before but this is the first time I've  
had trouble.

I'm getting a series of error messages during the ./configure step  
reguardless of what ./configure options I use.

The error messages even say I should bring them to the list.

here is one sample in its entirety:

configure: WARNING: termios.h: present but cannot be compiled
configure: WARNING: termios.h: check for missing prerequisite headers?
configure: WARNING: termios.h: see the Autoconf documentation
configure: WARNING: termios.h: section Present But Cannot Be Compiled
configure: WARNING: termios.h: proceeding with the preprocessor's result
configure: WARNING: termios.h: in the future, the compiler will take  
precedence
configure: WARNING: ##  
-- ##
configure: WARNING: ## Report this to  
courier-users@lists.sourceforge.net ##
configure: WARNING: ##  
-- ##


Im getting a simiar warning sequence for each of the following files:

sys/time.h
fcntl.h
crypt.h
terminos.h

I googled for this and found several pages explaning the problem, but  
nothing clear about what to do about it.

the box is centos 5.1 with current updates.

What do you suggest I do? I'm not sure if I should back off a version,  
or what exactly.

Thanks for any insight.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] configure errors while trying to configure courier-authlib-0.60.2

2008-01-24 Thread Sam Varshavchik

[EMAIL PROTECTED] writes:


The error messages even say I should bring them to the list.

here is one sample in its entirety:

configure: WARNING: termios.h: present but cannot be compiled
configure: WARNING: termios.h: check for missing prerequisite headers?


Look in the config.log file in the subdirectory where this configure script 
reported this error. The config.log should contain a log of the compiler 
errors that will point to the real problem.




pgpEeVO3tzILJ.pgp
Description: PGP signature
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] configure errors while trying to configure courier-authlib-0.60.2

2008-01-24 Thread [EMAIL PROTECTED]
Quoting Sam Varshavchik [EMAIL PROTECTED]:


 Look in the config.log file in the subdirectory where this configure
 script reported this error. The config.log should contain a log of the
 compiler errors that will point to the real problem.

This is what I'm getting from config.log

First:

configure:24898: checking sys/time.h usability
configure:24915: gcc -c ?I?h?m?/?p?p?a?l?i?c?u?e? -g -O2 -Wall -I..  
-I./..  conftest.c 5
gcc: ?I?h?m?/?p?p?a?l?i?c?u?e?: No such file or directory
configure:24921: $? = 1
configure: failed program was:
| /* confdefs.h.  */

I don't understand the unprintable characters in the config.log,


then later:

| #include sys/time.h
configure:24935: result: no
configure:24939: checking sys/time.h presence
configure:24954: gcc -E  conftest.c
configure:24960: $? = 0
configure:24974: result: yes
configure:24987: WARNING: sys/time.h: present but cannot be compiled
configure:24989: WARNING: sys/time.h: check for missing  
prerequisite headers?
configure:24991: WARNING: sys/time.h: see the Autoconf documentation
configure:24993: WARNING: sys/time.h: section Present But Cannot  
Be Compiled
configure:24995: WARNING: sys/time.h: proceeding with the  
preprocessor's result
configure:24997: WARNING: sys/time.h: in the future, the compiler will  
take precedence
configure:25007: checking for sys/time.h
configure:25015: result: yes

There is nothing new here, its basically the same message as was was  
displayed on the screen when I ran ./configure

I scanned through the config.log and there are several entries very  
similar to my first snippet.




-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] configure errors while trying to configure courier-authlib-0.60.2

2008-01-24 Thread Sam Varshavchik

[EMAIL PROTECTED] writes:


Quoting Sam Varshavchik [EMAIL PROTECTED]:



Look in the config.log file in the subdirectory where this configure
script reported this error. The config.log should contain a log of the
compiler errors that will point to the real problem.


This is what I'm getting from config.log

First:

configure:24898: checking sys/time.h usability
configure:24915: gcc -c ?I?h?m?/?p?p?a?l?i?c?u?e? -g -O2 -Wall -I..  
-I./..  conftest.c 5

gcc: ?I?h?m?/?p?p?a?l?i?c?u?e?: No such file or directory
configure:24921: $? = 1
configure: failed program was:
| /* confdefs.h.  */

I don't understand the unprintable characters in the config.log,


If you did not specify any non-default parameters to the configure script, 
or did not set any of the configuration variables, this looks like a 
hardware problem, most likely bad RAM. Run memtest86 and see what happens.


Either that, or your tarball is corrupted. Check the tarball's GPG 
signature, to verify that you do not have a damaged tarball.




pgpiVxxVM7QDv.pgp
Description: PGP signature
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure: error: Cannot find function res_query

2006-03-20 Thread Brent Robinson



Hi,

I am attempting to install Courier 0.53.1 on 
aMac running OSX 10.3.9. Whenever Iexecute the "configure" 
script, it fails with the following error:

checking whether -lresolv is needed for 
res_query... configure: error: Cannot find function res_queryconfigure: 
error: /bin/sh './configure' failed for courier

Can anyone help me determine what to do to overcome this error? I 
have searched the Net for assistance, but nothing that I have tried so far has 
helped. If I need to provide additional information in order for you to 
help me solve this problem, please let me know what information you need and I 
will pass it along.

Thanks,
Brent Robinson
[EMAIL PROTECTED]


Re: [courier-users] Configure different attachment limit for different quota users

2006-02-08 Thread Vincent Lee

Gordon Messmer wrote:

Sam Varshavchik wrote:

Vincent Lee writes:


Hi all,

I would like to deploy different attachment limit for different quota 
user.
Because fixed attachment limit seems not that flexible for small/huge 
quota user.
For example, 10MB email user will have 2 MB attachment limit, where 
20MB user will have 4MB attachment limit, and so on.


Is Courier-MTA able to configure in that way?



No.


You probably could, however, write your own filter to do that.  You'd 
want to base your calculations on the user with the smallest quota.


Thanks for the opinion.
Unfortunately I don't really know any programming. Wonder anyone has 
write own filter on this before?

Thanks.


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure different attachment limit for different quota users

2006-01-28 Thread Vincent Lee

Hi all,

I would like to deploy different attachment limit for different quota user.
Because fixed attachment limit seems not that flexible for small/huge 
quota user.
For example, 10MB email user will have 2 MB attachment limit, where 20MB 
user will have 4MB attachment limit, and so on.


Is Courier-MTA able to configure in that way?
Or anyone has configured on this before, or any idea to implement this?
Thanks.

Rgds,
Vincent



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Configure different attachment limit for different quota users

2006-01-28 Thread Sam Varshavchik

Vincent Lee writes:


Hi all,

I would like to deploy different attachment limit for different quota user.
Because fixed attachment limit seems not that flexible for small/huge 
quota user.
For example, 10MB email user will have 2 MB attachment limit, where 20MB 
user will have 4MB attachment limit, and so on.


Is Courier-MTA able to configure in that way?


No.




pgpFM2Oh3Gry1.pgp
Description: PGP signature


Re: [courier-users] Configure different attachment limit for different quota users

2006-01-28 Thread Gordon Messmer

Sam Varshavchik wrote:

Vincent Lee writes:


Hi all,

I would like to deploy different attachment limit for different quota 
user.
Because fixed attachment limit seems not that flexible for small/huge 
quota user.
For example, 10MB email user will have 2 MB attachment limit, where 
20MB user will have 4MB attachment limit, and so on.


Is Courier-MTA able to configure in that way?



No.


You probably could, however, write your own filter to do that.  You'd 
want to base your calculations on the user with the smallest quota.



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure probs with courier-0.52.2 on Solaris 9

2005-12-28 Thread Bill Taroli
configure falls over in waitlib, complaining that neither wait nor wait3
seem happy. Below is an exerpt from my waitlog config.log. In progress
looking for internet-based Solaris tips on building courier (and authlib)
post 0.50.0... whatever changed seems to make building it on Solaris 9
seem near impossible.


configure:4025: checking if wait function is broken
configure:4047: gcc -o conftest -g -O2   conftest.c  5
configure:4050: $? = 0
configure:4052: ./conftest
configure:4055: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME 
| #define PACKAGE_TARNAME 
| #define PACKAGE_VERSION 
| #define PACKAGE_STRING 
| #define PACKAGE_BUGREPORT 
| #define HAVE_SYS_WAIT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_UNISTD_H 1
| #define RETSIGTYPE void
| #define HAVE_WAIT 1
| #define HAVE_WAIT3 1
| #define HAVE_SIGHOLD 1
| #define HAVE_SIGPROCMASK 1
| /* end confdefs.h.  */
|
| #include  confdefs.h
| #include  ./confwait.c
|
configure:4069: result: yes
configure:4142: error: I give up -- neither wait nor wait3 works properly

##  ##
## Cache variables. ##
##  ##

ac_cv_build=sparc-sun-solaris2.9
ac_cv_build_alias=sparc-sun-solaris2.9
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_f77_compiler_gnu=yes
ac_cv_func_db_env_create=yes
ac_cv_func_db_open=no
ac_cv_func_dbopen=no
ac_cv_func_dlopen=no
ac_cv_func_gdbm_fdesc=yes
ac_cv_func_gdbm_open=yes
ac_cv_func_inet_pton=no
ac_cv_func_initgroups=yes
ac_cv_func_poll=yes
ac_cv_func_readlink=yes
ac_cv_func_regcomp=yes
ac_cv_func_setgroups=yes
ac_cv_func_setlocale=yes
ac_cv_func_setpgrp=yes
ac_cv_func_setpgrp_void=yes
ac_cv_func_shl_load=no
ac_cv_func_sigblock=no
ac_cv_func_sighold=yes
ac_cv_func_sigprocmask=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strdup=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_symlink=yes
ac_cv_func_utime=yes
ac_cv_func_utimes=yes
ac_cv_func_wait=yes
ac_cv_func_wait3=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_fam_h=no
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_iostream=yes
ac_cv_header_iostream_h=yes
ac_cv_header_istream=yes
ac_cv_header_istream_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_new=yes
ac_cv_header_ostream=yes
ac_cv_header_ostream_h=yes
ac_cv_header_pcre_h=yes
ac_cv_header_pcre_pcre_h=no
ac_cv_header_pthread_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=no
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_fcntl_h=yes
ac_cv_header_sys_file_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_sysexits_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_vector=yes
ac_cv_header_vector_h=yes
ac_cv_header_wchar_h=yes
ac_cv_host=sparc-sun-solaris2.9
ac_cv_host_alias=sparc-sun-solaris2.9
ac_cv_lib_db_db_env_create=yes
ac_cv_lib_db_db_open=no
ac_cv_lib_db_dbopen=no
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_dld_shl_load=no
ac_cv_lib_fam_FAMOpen=no
ac_cv_lib_gdbm_gdbm_open=yes
ac_cv_lib_nsl_inet_addr=yes
ac_cv_lib_socket_socket=yes
ac_cv_objext=o
ac_cv_path_COURIERAUTHCONFIG=/usr/local/bin/courierauthconfig
ac_cv_path_GPG=/usr/bin/gpg
ac_cv_path_MAILBOT=/usr/lib/courier/bin/mailbot
ac_cv_path_PERL=/usr/local/bin/perl
ac_cv_path_PS=/usr/bin/ps
ac_cv_path_SETENV=/usr/bin/env
ac_cv_path_SYSCONFTOOL_PERL=/usr/local/bin/perl
ac_cv_path_W=/usr/bin/w
ac_cv_prog_AWK=nawk
ac_cv_prog_CPP=$'gcc -E'
ac_cv_prog_CXXCPP=$'g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_F77=g77
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes

Re: [courier-users] configure probs with courier-0.52.2 on Solaris 9

2005-12-28 Thread Bill Taroli

Bill Taroli wrote:

configure falls over in waitlib, complaining that neither wait nor wait3
seem happy. Below is an exerpt from my waitlog config.log. In progress
looking for internet-based Solaris tips on building courier (and authlib)
post 0.50.0... whatever changed seems to make building it on Solaris 9
seem near impossible.


configure:4142: error: I give up -- neither wait nor wait3 works properly
  


Found the FAQ entry and tried |--with-waitfunc=wait3. Seems to be 
helping the configure step. Now I see I've run into the same tcpd 
problem reported in here a short while ago, so I'll try the patch they 
mentioned in that thread.


Does anyone know if there is a here's all the hoops you have to jump 
through to get recent Courier versions to build on Solaris document or 
page? And any idea whether the build process might possibly ever be made 
a little more Solaris friendly? I know we're all supposed to be running 
Linux these days, but some of us don't... ;-)


Bill
|


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure and compile problem with SUSE 9.3 Professional

2005-11-22 Thread René Jenny





Hi, I have been trying to compile courier-imap on 
my Suse 9.3 Professional system but it just won't work. (I ran the YOU today 
forupdating the system to the latest possible stage)The gdb 
seems to be installed correctly 
under:/usr/include/dbm.h/usr/include/gdbm.h/usr/include/ndbm.h

/usr/lib/libgdbm.a/usr/lib/libgdbm.la/usr/lib/libgdbm.so/usr/lib/libgdbm_compat.a/usr/lib/libgdbm_compat.la/usr/lib/libgdbm_compat.so/usr/lib/libndbm.a/usr/lib/libndbm.so/usr/share/info/gdbm.info.gz/usr/share/man/man3/gdbm.3.gz

ldconfig -p | grep gdbm results in the 
following output:libgdbm_compat.so.3 (libc6) = 
/usr/lib/libgdbm_compat.so.3libgdbm_compat.so (libc6) = 
/usr/lib/libgdbm_compat.solibgdbm.so.3 (libc6) = 
/usr/lib/libgdbm.so.3libgdbm.so (libc6) = 
/usr/lib/libgdbm.so

When I run ./configure --with-db=gdbm I get the 
following:loading cache ./config.cachechecking for gcc... 
(cached) gccchecking whether the C compiler (gcc -L /usr/lib) works... 
yeschecking whether the C compiler (gcc -L /usr/lib) is a 
cross-compiler... nochecking whether we are using GNU C... (cached) 
yeschecking whether gcc accepts -g... (cached) yeschecking for gawk... 
(cached) gawkchecking for a BSD compatible install... (cached) 
/usr/bin/install -cchecking whether ln -s works... (cached) yeschecking 
whether make sets ${MAKE}... (cached) yeschecking for perl5... (cached) 
/usr/bin/perlchecking for sysconftool.. ././sysconftoolchecking for 
env... (cached) /usr/bin/envchecking whether build environment is sane... 
yeschecking for working aclocal... foundchecking for working autoconf... 
foundchecking for working automake... foundchecking for working 
autoheader... foundchecking for working makeinfo... foundchecking for 
gdbm_open in -lgdbm... (cached) nochecking for gdbm_open... (cached) 
noconfigure: error: Cannot find either the gdbm or the db 
library.

I have searched for solutions on the web and tried 
everything I could find, like:CPPFLAGS="-I /usr/include"LDFLAGS="-L 
/usr/lib"export CPPFLAGSexport LDFLAGS

before running the ./config --with-db=gdbm command 
(executed as non root user) I tried to run ./configure without adding any 
options. It runs through without errors but then the "make" command 
fails.(The source files are unpacked into a 
subdirectory ofthe home-directoryof a non priviledged user from 
where I excecute the ./configure command.)
Can anyone please help me configure and compile 
courier-imap?Thanks in advance
-- René 
Jenny


Re: [courier-users] Configure and compile problem with SUSE 9.3 Professional

2005-11-22 Thread Sam Varshavchik
 

pgpfb6A9H63UZ.pgp
Description: PGP signature


Re: [courier-users] Configure and compile problem with SUSE 9.3 Professional

2005-11-22 Thread Sam Varshavchik
 

pgpi651jEGLDH.pgp
Description: PGP signature


Re: [courier-users] Configure and compile problem with SUSE 9.3 Professional

2005-11-22 Thread Sam Varshavchik

[ apologizes for the blank messages, hopefully I'm feeling better now ]

René Jenny writes:

Hi, I have been trying to compile courier-imap on my Suse 9.3 Professional 


Which version of Courier-IMAP?


When I run ./configure --with-db=gdbm I get the following:
 
loading cache ./config.cache


config.cache is used by default only in old versions of Courier-IMAP, that 
nobody cares about any more.


In any case, you need to remove config.cache before rerunning configure 
after installing or uninstalling stuff, else you'll still be picking up an 
old cached configuration.



checking for gdbm_open in -lgdbm... (cached) no
checking for gdbm_open... (cached) no
configure: error: Cannot find either the gdbm or the db library. 


If you still get this after deleting config.cache, look in config.log to get 
the real compiler error that's failing here.




pgpwNj8QIvTWT.pgp
Description: PGP signature


[courier-users] ./configure: cannot determine default mailbox

2005-10-30 Thread Robert Samuel White
I am encountering the following problem when I attempt to compile maildrop:

checking location of system mailboxes... configure: error: Cannot determine default mailboxconfigure: error: /bin/sh './configure' failed for maildrop
I'm not sure what to make of it. I've followed these instructions:

http://www.phparchitecture.com/howto_show.php?id=2

I've been successful at compiling everything except for the courier software.

Can anyone point me in the right direction? I've been working on this for eight hours now! Thanks!!
		 Yahoo! FareChase - Search multiple travel sites in one click.

 

 

Re: [courier-users] ./configure: cannot determine default mailbox

2005-10-30 Thread Jerry Amundson
On Sun October 30 2005 02:57, Robert Samuel White wrote:
 I am encountering the following problem when I attempt to compile maildrop:

 checking location of system mailboxes... configure: error: Cannot determine
 default mailbox configure: error: /bin/sh './configure' failed for maildrop

 I'm not sure what to make of it.  I've followed these instructions:

 http://www.phparchitecture.com/howto_show.php?id=2

Check config.log for more info... what versions of Courier, OS, etc?

jerry


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure: WARNING:

2005-05-12 Thread Dennis Matotek
ldap.h: present but cannot be compiled
configure: WARNING: ldap.h: check for missing prerequisite headers?
configure: WARNING: ldap.h: see the Autoconf documentation
configure: WARNING: ldap.h: section Present But Cannot Be Compiled
configure: WARNING: ldap.h: proceeding with the preprocessor's result
configure: WARNING: ldap.h: in the future, the compiler will take
precedence
configure: WARNING: ##
-- ##
configure: WARNING: ## Report this to
courier-users@lists.sourceforge.net ##
configure: WARNING: ##
-- ##
checking for ldap.h... yes



-
Utiba Pty Ltd 
This message has been scanned for viruses and
dangerous content by Utiba mail server and is 
believed to be clean.



---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393alloc_id=16281op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure failure on openbsd compiling courier-authlib-0.54

2005-02-23 Thread Sam Stern
All,

I cannot seem to get Courer-Authlib 0.54 to compile on OpenBSD 3.6

Configure bombs with 

conftest.c:41: conflicting types for `crypt'
/usr/include/unistd.h:138: previous declaration of `crypt'


What's odd is that crypt is only defined once in unistd.h

See below for config.log snippet. Please let me know if a full log would
help locate the problem more effectively.

I searched for unistd.h in my /usr/src tree and found two instances of the
file:

/usr/include/sys/unistd.h
/usr/include/unistd.h

The correct instance of unistd.h seems to be /usr/include/unistd.h

You can view that file at:

http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/include/unistd.h?rev=1
.52content-type=text/plain

You can view my complete log file (As a text file) at:

http://tinyurl.com/5web5

Or a bz2 tarball of the file at:

http://tinyurl.com/3seuo

What can I do to get this working or is it a bug that I cannot work around
(if so, what bug and how do I report it to the OpenBSD maintainers)?


TIA

Sam Stern
Batlimore, md, USA

-- config.log snippet (I've included what lines from the end that seem to
pertain to the crypt.h tests wrt mysql client which is where the error seems
to be)

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by courier-authlib configure 0.54, which was
generated by GNU Autoconf 2.59.  Invocation command line was

  $ ./configure --with-mysql-includes=/usr/local/include/mysql
--with-mysql-libs=/usr/lib/mysql --without-authldap --without-authpgsql
--with-mailuser=courier --with-mailgroup=courier --without-authpam
--without-authldap

## - ##
## Platform. ##
## - ##

hostname = mail.samstern.net
uname -m = i386
uname -r = 3.6
uname -s = OpenBSD
uname -v = SAMSTERN#0

/usr/bin/uname -p = Intel Pentium III (GenuineIntel 686-class)
/bin/uname -X = unknown

/bin/arch  = unknown
/usr/bin/arch -k   = OpenBSD.i386
/usr/convex/getsysinfo = unknown
hostinfo   = unknown
/bin/machine   = unknown
/usr/bin/oslevel   = unknown
/bin/universe  = unknown

PATH: /usr/bin
PATH: /bin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /sbin
PATH: /usr/X11R6/bin
PATH: /usr/local/bin
PATH: /home/samstern/bin


## --- ##
## Core tests. ##
## --- ##

snip
configure:24864: checking sys/time.h presence
configure:24874: gcc -E  conftest.c
configure:24880: $? = 0
configure:24900: result: yes
configure:24935: checking for sys/time.h
configure:24942: result: yes
configure:24810: checking for sys/wait.h
configure:24815: result: yes
configure:24819: checking sys/select.h usability
configure:24831: gcc -c -I/usr/local/include/mysql -g -O2 -Wall -I.. -I./..
conftest.c 5
configure:24837: $? = 0
configure:24841: test -z 
 || test ! -s conftest.err
configure:24844: $? = 0
configure:24847: test -s conftest.o
configure:24850: $? = 0
configure:24860: result: yes
configure:24864: checking sys/select.h presence
configure:24874: gcc -E  conftest.c
configure:24880: $? = 0
configure:24900: result: yes
configure:24935: checking for sys/select.h
configure:24942: result: yes
configure:24810: checking for unistd.h
configure:24815: result: yes
configure:24819: checking fcntl.h usability
configure:24831: gcc -c -I/usr/local/include/mysql -g -O2 -Wall -I.. -I./..
conftest.c 5
configure:24837: $? = 0
configure:24841: test -z 
 || test ! -s conftest.err
configure:24844: $? = 0
configure:24847: test -s conftest.o
configure:24850: $? = 0
configure:24860: result: yes
configure:24864: checking fcntl.h presence
configure:24874: gcc -E  conftest.c
configure:24880: $? = 0
configure:24900: result: yes
configure:24935: checking for fcntl.h
configure:24942: result: yes
configure:24819: checking crypt.h usability
configure:24831: gcc -c -I/usr/local/include/mysql -g -O2 -Wall -I.. -I./..
conftest.c 5
conftest.c:65: crypt.h: No such file or directory
configure:24837: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_EXPECT 1
| #define HAVE_MD5LIB 1
| #define HAVE_SHA1LIB 1
| #define HAVE_HMACLIB 1
| #define USERDB /usr/local/etc/authlib/userdb
| #define HAVE_STDIO_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_LDAP_TLS 
| #define HAVE_LDAP_RESULT2ERROR 
| #define HAVE_ENDPWENT 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_FCNTL_H 1
| /* end confdefs.h.  */
| #include stdio.h
| #if HAVE_SYS_TYPES_H
| # include sys/types.h
| #endif
| #if HAVE_SYS_STAT_H
| # include sys/stat.h
| #endif
| #if STDC_HEADERS
| 

Re: [courier-users] configure failure on openbsd compiling courier-authlib-0.54

2005-02-23 Thread Sam Varshavchik
Sam Stern writes:
All,
I cannot seem to get Courer-Authlib 0.54 to compile on OpenBSD 3.6
Configure bombs with 

conftest.c:41: conflicting types for `crypt'
/usr/include/unistd.h:138: previous declaration of `crypt'


What's odd is that crypt is only defined once in unistd.h
This is fine.  This error is expected, it's part of the probe.  What should 
not happen, is that this error should not abort the configure script.


| }
configure:25502: result: 0
Now, begin reading starting at line 25502 of your configure script, and try 
to figure out why it aborts at that point.  There's nothing there that 
should be stopping the script execution.



pgpsEZ6D1bLvs.pgp
Description: PGP signature


RE: [courier-users] configure failure on openbsd compiling courier-authlib-0.54 (conftest2.out file not found)

2005-02-23 Thread Sam Stern

 Sam Stern writes:
 
  All,
  
  I cannot seem to get Courer-Authlib 0.54 to compile on OpenBSD 3.6
  
  Configure bombs with 
  
  conftest.c:41: conflicting types for `crypt'
  /usr/include/unistd.h:138: previous declaration of `crypt'
  
  
  What's odd is that crypt is only defined once in unistd.h
 
 This is fine.  This error is expected, it's part of the 
 probe.  What should 
 not happen, is that this error should not abort the configure script.
 
 
  | }
  configure:25502: result: 0
 
 Now, begin reading starting at line 25502 of your configure 
 script, and try 
 to figure out why it aborts at that point.  There's nothing 
 there that 
 should be stopping the script execution.
 
Hi Sam,

Thanks for the pointer. Oddly enough it pointed me in the right direction.
The fix was totally non-obvious: The problem is that there is a slight
difference between your shell script's use of the . operator  and
OpenBSD's /bin/sh (pdksh) interpretation of that operator. OpenBSD's sh does
not include the current directory when using  .  to execute a file. In
openbsd the file executed must be in the path (which usually does not
include the current directory).

To fix the problem (in the short term) on should replace the initial
reference to 

#! /bin/sh

With

#! /usr/local/bin/bash


FWIW, here is there error that clued me in:

checking for crypt() prototype... 0
./configure[25560]: .: conftest2.out: not found

I looked again (and again) at the error and it occurred to me that the test
it referred to was odd (lines 25550-60 of configure) in that it should have
worked, Specifically it's line 25554 that's causing the issue. Line 25554
reads:


. conftest2.out


A quick check of the docs showed that the . command was slightly but
significantly different between traditional bourne and pdksh (korne) shells.

In bash, the . operator in bash:


 .  filename [arguments]
   source filename [arguments]
  Read and execute commands from filename in the cur-
  rent shell environment and return the  exit  status
  of  the  last  command  executed from filename.  If
  filename does not contain a slash,  file  names  in
  PATH  are  used  to  find  the directory containing
  filename.  The file searched for in PATH  need  not
  be executable.  When bash is not in posix mode, the
  current directory is searched if no file  is  found
  in  PATH.   If  the  sourcepath option to the shopt
  builtin command is turned  off,  the  PATH  is  not
  searched.   If  any  arguments  are  supplied, they
  become the positional parameters when  filename  is
  executed.   Otherwise the positional parameters are
  unchanged.  The return status is the status of  the
  last command exited within the script (0 if no com-
  mands are executed), and false if filename  is  not
  found or cannot be read.


While in sh (e.g. pdksh @(#)PD KSH v5.2.14 99/07/13.2) has a VERY differnet
take on this operator:

 . file [arg1 ...]
 Execute the commands in file in the current environment.  The
 file is searched for in the directories of PATH.  If arguments
 are given, the positional parameters may be used to access them
 while file is being executed.  If no arguments are given, the 
 positional parameters are those of the environment the command
is
 used in.


So openbsd's sh was trying to execute conftest.out but could not locate it
in the path - unlike bash which can locate the file in the  path.
Unfortunately, I am hesitant to create a patch as I'm not certain the
right way to fix this because the  .  operator is used allot in the
configure script and don't know which is best: add ./ to the path if we
are running pdksh (seems wise but I am not certain) or prepend a ./ to
each filename provided to the  .  operator.

Thus you have the reason for my long winded e-mail to you: I know what is
wrong but am hesitant to fix it as any fix I provide may create problems
down the road.


FYI

Sam Stern
Baltimore, MD, USA



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
courier-users mailing list
courier-users@lists.sourceforge.net
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] configure failure on openbsd compiling courier-authlib-0.54 (conftest2.out file not found)

2005-02-23 Thread Sam Varshavchik
Sam Stern writes:
Unfortunately, I am hesitant to create a patch as I'm not certain the
right way to fix this because the  .  operator is used allot in the
I'm actually already aware of this issue.
k


pgpfbOs6FlQj5.pgp
Description: PGP signature


[courier-users] Configure problems !

2004-05-24 Thread Hennie Rautenbach
Hi there,
Trying to build courier-imap-3.0.3 from source on a Sun E-450 running 
Solaris 8, using gcc version 2.95.3

Error:
configure: error: /etc/lib_deps does not exist - upgrade vpopmail to the 
current version or fix the permissions on this file
configure: error: /bin/bash './configure' failed for authlib

Below is my configure script:
#!/bin/sh
./configure --without-ipv6 \
--disable-root-check \
--without-authpam \
--without-authldap \
--without-authpwd \
--without-authmysql \
--without-authpgsql \
--without-authshadow \
--without-authuserdb \
--without-authcustom \
--without-authcram \
--without-ssl \
--with-authdaemon \
--with-authvchkpw \
--with-db=db
I'd appreciate any advise to get beyond this problem very much. Is it 
clear what I am doing wrong ?

Best regards,
Hennie


This transmission is for the intended addressee only and is confidential
information. If you have received this transmission in error, please
delete it and notify the sender. The contents of this e-mail are the
opinion of the writer only and are not endorsed by Sabinet Online
Limited unless expressly stated otherwise.

---
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149alloc_id=8166op=click
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] ./configure produces error in 0.45.1 on freebsd 4.8

2004-03-13 Thread Thomas von Hassel
When trying to configure i get this:

checking whether -lresolv is needed for res_query... configure: error: 
Cannot find function res_query
configure: error: /bin/sh './configure' failed for authlib

my configure command looks like this:

./configure --prefix=/usr/local/courier --without-ipv6 
--with-mailuser=courier --with-mailgroup=courier

any ideas ?

/thomas

--
Dignity and an empty sack is worth the sack.
  -Ferengi Rule of Acquisition No. 109


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470alloc_id=3638op=click
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure problem in Solaris 9 box

2004-01-10 Thread Jordi
  I'm trying to configure 0.44.2 version in a solaris 9 box with
  openssl 0.9.7c, openldap 2.1.25 and BerkeleyDB 4.2. I use gcc 3.3.2 and
  gmake 2.80

  When the configure process arrive to webmail check, the process
  stop it.

  This is part of webmail/config.log -


 [...]
 configure:5862: $? = 0
 configure:5865: test -s conftest
 configure:5868: $? = 0
 configure:5879: result: yes
 configure:5809: checking for strncasecmp
 configure:5859: gcc -o conftest -g -O2 -Wall -I/server/openldap/include
 -I/usr/local/ssl/include -I/usr/local/BerkeleyDB.4.2/include
 -L/server/openldap/lib -L/usr/local/ssl/lib
 -L/usr/local/BerkeleyDB.4.2/lib  -R/server/openldap/lib
 -R/usr/local/ssl/lib -R/usr/local/BerkeleyDB.4.2/lib  conftest.c -lcrypt
  5
 configure:5862: $? = 0
 configure:5865: test -s conftest
 configure:5868: $? = 0
 configure:5879: result: yes
 configure:5893: checking for crypt() prototype
 configure:5924: gcc -c -g -O2 -Wall -I/server/openldap/include
 -I/usr/local/ssl/include -I/usr/local/BerkeleyDB.4.2/include conftest.c
 5
 configure:5953: error: conflicting types for `crypt'
 /usr/include/crypt.h:20: error: previous declaration of `crypt'
 configure:5927: $? = 1
 configure: failed program was:
 | #line 5898 configure
 | /* confdefs.h.  */
 |
 | #define PACKAGE_NAME 
 | #define PACKAGE_TARNAME 
 | #define PACKAGE_VERSION 
 | #define PACKAGE_STRING 
 | #define PACKAGE_BUGREPORT 
 | #define _GNU_SOURCE 1
 | #define STDC_HEADERS 1
 | #define HAVE_SYS_TYPES_H 1
 | #define HAVE_SYS_STAT_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
 | #define HAVE_MEMORY_H 1
 | #define HAVE_STRINGS_H 1
 | #define HAVE_INTTYPES_H 1
 | #define HAVE_UNISTD_H 1
 | #define AUTORENAMESENT yes
 | #define HAVE_LIBCRYPT 1
 | #define HAVE_DIRENT_H 1
 | #define STDC_HEADERS 1
 | #define HAVE_SYSLOG_H 1
 | #define HAVE_FCNTL_H 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_SYS_SELECT_H 1
 | #define HAVE_SYS_UIO_H 1
 | #define HAVE_SYS_STAT_H 1
 | #define HAVE_SYS_TIME_H 1
 | #define HAVE_UTIME_H 1
 | #define HAVE_UNISTD_H 1
 | #define HAVE_LOCALE_H 1
 | #define HAVE_CRYPT_H 1
 | #define HAVE_WCHAR_H 1
 | #define PASSFD_MSGACCRIGHTS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define TIME_WITH_SYS_TIME 1
 | #define RETSIGTYPE void
 | #define HAVE_STRFTIME 1
 | #define HAVE_CRYPT 1
 | #define HAVE_UTIME 1
 | #define HAVE_UTIMES 1
 | #define HAVE_SETREUID 1
 | #define HAVE_SETLOCALE 1
 | #define HAVE_WCWIDTH 1
 | #define HAVE_STRDUP 1
 | #define HAVE_STRCASECMP 1
 | #define HAVE_STRNCASECMP 1
 | /* end confdefs.h.  */
 |
 |#if HAVE_CRYPT_H
 |#include crypt.h
 |#endif
 |#if HAVE_UNISTD_H
 |#include unistd.h
 |#endif
 |int crypt(int, int);
 |
 |
 | int
 | main ()
 | {
 |
 |   ;
 |   return 0;
 | }
 configure:5946: result: 0




  Any ideas?

  Thanks in advance.



   Jordi


---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure SMTP Auth

2004-01-07 Thread Carolyn Longfoot
Hi,

any pointers how to configure smtp auth with Courier? I just need to know 
what man page to read to get started...

Cheers,
Caro
_
Tired of slow downloads? Compare online deals from your local high-speed 
providers now.  https://broadband.msn.com



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


RE: [courier-users] Configure SMTP Auth

2004-01-07 Thread Mitch \(WebCob\)
It's configured by default.

Setting up the client is a matter of client docs... in outlook and outlook
express it's under the account properties enable authentication for
outgoing mail or something like that.

m/

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Carolyn
Longfoot
Sent: Wednesday, January 07, 2004 1:51 PM
To: [EMAIL PROTECTED]
Subject: [courier-users] Configure SMTP Auth


Hi,

any pointers how to configure smtp auth with Courier? I just need to know
what man page to read to get started...

Cheers,
Caro

_
Tired of slow downloads? Compare online deals from your local high-speed
providers now.  https://broadband.msn.com



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Configure SMTP Auth

2004-01-07 Thread Gordon Messmer
Carolyn Longfoot wrote:
any pointers how to configure smtp auth with Courier? I just need to 
know what man page to read to get started...
Make sure courier-smtpauth is installed, if you built the rpms.  Edit 
etc/courier/esmtpd and enter values for AUTHMODULES and ESMTPAUTH.



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] Configure SMTP Auth

2004-01-07 Thread Gordon Messmer
Mitch (WebCob) wrote:
It's configured by default.
That's been said before, but I don't think it's true.  On a default 
install, AUTHMODULES and ESMTPAUTH are both set to .

And on that subject, if you install courier and courier-smtpauth for the 
first time, smtpauth's post script will fail.  courier should be a 
PreReq for courier-smtpauth.



---
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure fails at maildrop

2004-01-03 Thread Georg Lutz
Hi,

after the upgrade from RH8 to Fedora Core 1 I am not longer able to
compile courier.

everytime configure fails with
---
checking location of system mailboxes... ./Maildir
checking whether maildrop should reset its group ID... 1
checking privileged users... configure: error: /bin/sh './configure'
failed for maildrop
---

I have tested this with courier-0.44.2 and courier-0.43.1, which was
previously compiled and installed before the upgrade.

A hardware error is nearly impossible in this case.
(http://www.mail-archive.com/[EMAIL PROTECTED]/msg14334.html)

I have attached the config.log from courier-43.1/maildrop .

I also wonder if anyone experienced this kind of problem with Fedora /
courier.

-- 
Georg


config.log.bz2
Description: Binary data


[courier-users] configure fails at maildrop

2004-01-03 Thread Georg Lutz
Hi,

after the upgrade from RH8 to Fedora Core 1 I am not longer able to
compile courier.

everytime configure fails with
---
checking location of system mailboxes... ./Maildir
checking whether maildrop should reset its group ID... 1
checking privileged users... configure: error: /bin/sh './configure'
failed for maildrop
---

I have tested this with courier-0.44.2 and courier-0.43.1, which was
previously compiled and installed before the upgrade.

A hardware error is nearly impossible in this case.
(http://www.mail-archive.com/[EMAIL PROTECTED]/msg14334.html)

I have attached the config.log from courier-43.1/maildrop .

I also wonder if anyone experienced this kind of problem with Fedora /
courier.

-- 
Georg


config.log.bz2
Description: Binary data


Re: [courier-users] configure fails at maildrop

2004-01-03 Thread Georg Lutz
On 2004-01-03, Georg Lutz wrote:
 Hi,
 
 after the upgrade from RH8 to Fedora Core 1 I am not longer able to
 compile courier.
 
 everytime configure fails with
 ---
 checking location of system mailboxes... ./Maildir
 checking whether maildrop should reset its group ID... 1
 checking privileged users... configure: error: /bin/sh './configure'
 failed for maildrop
 ---
 

To be more precicely, it fails when doing the following:
---
[EMAIL PROTECTED] root]# export USERID=mail
[EMAIL PROTECTED] root]# if test `eval echo ~$USERID` != ~$USERID; then
echo 123; fi
123
[EMAIL PROTECTED] root]# if test `eval echo ~$USERID` != ~$USERID; then
echo 123; fi
Datenübergabe unterbrochen (broken pipe)
---

Note that bash is exiting here!

I have no clue whats going on here...

-- 
Georg


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id78alloc_id371op=click
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure problem in Solaris box

2003-12-30 Thread Jordi


 Hi,

 Sorry If my English is bad...

 I'm trying to configure 0.44.2 version in a solaris 9 box with
 openssl 0.9.7c, openldap 2.1.25 and BerkeleyDB 4.2.

 When the configure process arrive to webmail check, the process
 stop it.

 This is part of webmail/config.log -


[...]
configure:5862: $? = 0
configure:5865: test -s conftest
configure:5868: $? = 0
configure:5879: result: yes
configure:5809: checking for strncasecmp
configure:5859: gcc -o conftest -g -O2 -Wall -I/server/openldap/include
-I/usr/local/ssl/include -I/usr/local/BerkeleyDB.4.2/include 
-L/server/openldap/lib -L/usr/local/ssl/lib
-L/usr/local/BerkeleyDB.4.2/lib  -R/server/openldap/lib
-R/usr/local/ssl/lib -R/usr/local/BerkeleyDB.4.2/lib  conftest.c -lcrypt
 5
configure:5862: $? = 0
configure:5865: test -s conftest
configure:5868: $? = 0
configure:5879: result: yes
configure:5893: checking for crypt() prototype
configure:5924: gcc -c -g -O2 -Wall -I/server/openldap/include
-I/usr/local/ssl/include -I/usr/local/BerkeleyDB.4.2/include conftest.c
5
configure:5953: error: conflicting types for `crypt'
/usr/include/crypt.h:20: error: previous declaration of `crypt'
configure:5927: $? = 1
configure: failed program was:
| #line 5898 configure
| /* confdefs.h.  */
|
| #define PACKAGE_NAME 
| #define PACKAGE_TARNAME 
| #define PACKAGE_VERSION 
| #define PACKAGE_STRING 
| #define PACKAGE_BUGREPORT 
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define AUTORENAMESENT yes
| #define HAVE_LIBCRYPT 1
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_SYSLOG_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_UIO_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_CRYPT_H 1
| #define HAVE_WCHAR_H 1
| #define PASSFD_MSGACCRIGHTS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define RETSIGTYPE void
| #define HAVE_STRFTIME 1
| #define HAVE_CRYPT 1
| #define HAVE_UTIME 1
| #define HAVE_UTIMES 1
| #define HAVE_SETREUID 1
| #define HAVE_SETLOCALE 1
| #define HAVE_WCWIDTH 1
| #define HAVE_STRDUP 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| /* end confdefs.h.  */
|
|#if HAVE_CRYPT_H
|#include crypt.h
|#endif
|#if HAVE_UNISTD_H
|#include unistd.h
|#endif
|int crypt(int, int);
|
|
| int
| main ()
| {
|
|   ;
|   return 0;
| }
configure:5946: result: 0




 Any ideas?

 Thanks in advance.



  Jordi


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278alloc_id=3371op=click
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure accept policy per interface?

2003-11-11 Thread Serge Sivkov
Hello, courier users.
I'm use courier 0.37.3. 
My server (ubhs.ru) has 4 interfaces. Is there shanses to forbid to
accept messages from [EMAIL PROTECTED] from one of interfaces?
Ideally (only for this interface), i want to allow RELAYCLIENT if client
uses SMTP_TLS, disallow any messages with From: field setted to me if
client don't uses SMTP_TLS and allow to receive messages to me in any
other cases.

WBR, ssp


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure problem

2003-09-13 Thread Marek Turczyniak
Hello

While configure courier-mta (durind configure in maildrop directory) I get
an error:

checking default PATH for commands... /bin:/usr/bin:/usr/local/bin
checking for qmail-inject... no
checking mail transport agent... /usr/lib/courier/bin/sendmail
checking location of system mailboxes... ./Maildir
checking whether maildrop should reset its group ID... 1
checking privileged users... configure: error: /bin/sh './configure' failed
for maildrop

I have created courier user and mail group.

What privileged users???

--
Marek Turczyniak



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure couirer-mta with support for the authmysql modul

2003-07-13 Thread Mathias de Paulis Nilsson
Hi, I want to use authmysql as authentication modul. The problem I got is that I cant 
get the modul listed after my configureation in etc/authdaemonrc, and I also dont get 
the config file authmysqlrc file. 

I read in the FAQ at http://www.courier-mta.org/FAQ.html#authlib that I will need to 
set the CPPFLAGS and the LDFLAGS if I have installed mysql with prefix. 

So I tried this:

CPPFLAGS=/usr/local/mysql/include
LDFLAGS=/usr/local/mysql/lib
export CPPFLAGS
export LDFLAGS

And I did not work, I asked around and someone said to me that it should be 
./configure CPPFLAGS.. another flag So I tried that to, but it did not eighter work. 

I am running Redhat 9, with mysql-standard-4.0.13, and I am trying to install 
courier-mta 0.42.2.

If I am right I should have authmysql in this line as an option in the 
authdaemonrc file authmodulelist=authcustom authcram authuserdb authshadow authpwd

(Before I was using authuserdb as authentication module, but since I installed mysql I 
wanted to test courier-mta using mysql.

Regards
Mathias Nilsson



---
This SF.Net email sponsored by: Parasoft
Error proof Web apps, automate testing  more.
Download  eval WebKing and get a free book.
www.parasoft.com/bulletproofapps1
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] ./configure

2003-03-21 Thread Svend Erik Høst


Okay that's obvious, but how do i do that when i'm using the rpmbuild -ta command ?

(rpmbuild -ta courier.bz2)
-- 
With kind regards.

Svend

-Original Message-
From: Chris Berry [mailto:[EMAIL PROTECTED]
Sent: 19. marts 2003 18:49
To: [EMAIL PROTECTED]
Subject: Re: [courier-users] ./configure

checking for locking method... configure: error: must specify 
--with-locking-method option

I'm a rather newbee at compilling, any hints ?


It seems obvious, you need to reconfigure using --with-locking-method  yes??

Chris Berry
[EMAIL PROTECTED]
Systems Administrator
JM Associates

The packets involved in the transmission of this email were manually 
inspected by: Bob Smith, stateful packet inspector #23.



---
This SF.net email is sponsored by: Does your code think in ink?
You could win a Tablet PC. Get a free Tablet PC hat just for playing.
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure

2003-03-21 Thread Anand Buddhdev
On Wed, Mar 19, 2003 at 08:58:42PM +0100, Svend Erik Høst wrote:

 Okay that's obvious, but how do i do that when i'm using the rpmbuild -ta command ?

rpmbuild -ta --define xflags --with-locking-method=... courier.whatever.bz2

 (rpmbuild -ta courier.bz2)
 -- 
 With kind regards.
 
 Svend
 
 -Original Message-
 From: Chris Berry [mailto:[EMAIL PROTECTED]
 Sent: 19. marts 2003 18:49
 To: [EMAIL PROTECTED]
 Subject: Re: [courier-users] ./configure
 
 checking for locking method... configure: error: must specify 
 --with-locking-method option
 
 I'm a rather newbee at compilling, any hints ?
 
 
 It seems obvious, you need to reconfigure using --with-locking-method  yes??
 
 Chris Berry
 [EMAIL PROTECTED]
 Systems Administrator
 JM Associates
 
 The packets involved in the transmission of this email were manually 
 inspected by: Bob Smith, stateful packet inspector #23.
 
 
 
 ---
 This SF.net email is sponsored by: Does your code think in ink?
 You could win a Tablet PC. Get a free Tablet PC hat just for playing.
 What are you waiting for?
 http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users

-- 
Anand Buddhdev
http://anand.org


---
This SF.net email is sponsored by:Crypto Challenge is now open! 
Get cracking and register here for some mind boggling fun and 
the chance of winning an Apple iPod:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] ./configure

2003-03-19 Thread Svend Erik Høst

Hi 

i'm trying to compile the rpm's,  but the configure script exits with a warning.

checking for fcntl... yes
checking for flock... no
checking for lockf... yes
checking for locking method... configure: error: must specify --with-locking-method 
option

I'm a rather newbee at compilling, any hints ?


Med venlig hilsen

-- 
Svend Erik Høst mailto:[EMAIL PROTECTED]
Pallas Informatik A/S   http://www.pallas.dk
Allerød Stationsvej 2D  Tel.: +45 48 10 24 10
DK-3450 Allerød Fax.: +45 48 10 24 01




---
This SF.net email is sponsored by: Does your code think in ink?
You could win a Tablet PC. Get a free Tablet PC hat just for playing.
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure

2003-03-19 Thread Chris Berry
From: Svend Erik Høst [EMAIL PROTECTED]
i'm trying to compile the rpm's,  but the configure script exits with a 
warning.

checking for fcntl... yes
checking for flock... no
checking for lockf... yes
checking for locking method... configure: error: must specify 
--with-locking-method option

I'm a rather newbee at compilling, any hints ?

It seems obvious, you need to reconfigure using --with-locking-method  yes??

Chris Berry
[EMAIL PROTECTED]
Systems Administrator
JM Associates
The packets involved in the transmission of this email were manually 
inspected by: Bob Smith, stateful packet inspector #23.

_
Protect your PC - get McAfee.com VirusScan Online  
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963



---
This SF.net email is sponsored by: Does your code think in ink? 
You could win a Tablet PC. Get a free Tablet PC hat just for playing. 
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure

2003-03-19 Thread Chris Berry
From: Svend Erik Høst [EMAIL PROTECTED]
Okay that's obvious, but how do i do that when i'm using the rpmbuild -ta 
command ?

(rpmbuild -ta courier.bz2)
I haven't used rpmbuild before, but my guess would be that you can't, you'll 
have to build it manually on your system, or roll your own rpm.

Chris Berry
[EMAIL PROTECTED]
Systems Administrator
JM Associates
The packets involved in the transmission of this email were manually 
inspected by: Bob Smith, stateful packet inspector #23.

_
Protect your PC - get McAfee.com VirusScan Online  
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963



---
This SF.net email is sponsored by: Does your code think in ink? 
You could win a Tablet PC. Get a free Tablet PC hat just for playing. 
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


RE: [courier-users] ./configure

2003-03-19 Thread Svend Erik Høst

okay, but i wonder why the check fails, what do i need to install to make it happen ?

i tried using the  ./configure --with-locking-method=lockf and  ./configure 
--with-locking-method, and it didn't help me.

-- 
Svend



-Original Message-
From: Chris Berry [mailto:[EMAIL PROTECTED]
Sent: 19. marts 2003 21:28
To: [EMAIL PROTECTED]
Subject: Re: [courier-users] ./configure


From: Svend Erik Høst [EMAIL PROTECTED]
Okay that's obvious, but how do i do that when i'm using the rpmbuild -ta 
command ?

(rpmbuild -ta courier.bz2)

I haven't used rpmbuild before, but my guess would be that you can't, you'll 
have to build it manually on your system, or roll your own rpm.

Chris Berry
[EMAIL PROTECTED]
Systems Administrator
JM Associates

The packets involved in the transmission of this email were manually 
inspected by: Bob Smith, stateful packet inspector #23.



---
This SF.net email is sponsored by: Does your code think in ink?
You could win a Tablet PC. Get a free Tablet PC hat just for playing.
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


Re: [courier-users] ./configure

2003-03-19 Thread Jerry Amundson
Svend Erik Høst wrote:
Okay that's obvious, but how do i do that when i'm using the rpmbuild -ta command ?

(rpmbuild -ta courier.bz2)
rpmbuild -ta --define xflags\
 --with-whatever\
 --with-configure\
 --with-flags\
 --with-you\
 --with-want\
 --with-listed\
 --with-here\
 courier.bz2


---
This SF.net email is sponsored by: Does your code think in ink?
You could win a Tablet PC. Get a free Tablet PC hat just for playing.
What are you waiting for?
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure / make install problem

2003-03-10 Thread Paeddy




hi,

i just wanted to upgrade my courier 0.40 
installation to the newest 0.41 and i ran into problems.

my system is running on suse 7.3. when i run 
./configure everything looks fine but after su to root and execute "make 
install" it tells me te following:


Compiling strhdevt.crm -f libnumlib.aar cru 
libnumlib.a strhinot.o strhpidt.o strhtimet.o strgidt.o strinot.o strofft.o 
strpidt.o strsize.o strsizet.o strtimet.o changeuidgid.o struidt.o strdevt.o 
strhdevt.o ranlib libnumlib.amake[1]: Leaving directory 
`/home/ammap/paeddy.ch/temp/courier-0.41.0.20030308/numlib'Making check in 
soxwrapmake[1]: Entering directory 
`/home/ammap/paeddy.ch/temp/courier-0.41.0.20030308/soxwrap'Compiling 
soxfuncnames.cCompiling soxwrap.csoxwrap.c:114: libsock5confdir.h: No 
such file or directorymake[1]: *** [soxwrap.o] Error 1make[1]: Leaving 
directory `/home/ammap/paeddy.ch/temp/courier-0.41.0.20030308/soxwrap'make: 
*** [check-recursive] Error 1

afterwards i did a "find / -name 
"*libsock5confdir*" and i found the file under 
/home/ammap/paeddy.ch/temp/courier-0.40.1/soxwrap/libsock5confdir.h, 
which is my extracted directory of my prefious installation.

the path where i start configure is 
/home/ammap/paeddy.ch/temp/courier-0.41.0.20030308 but inside this path there is 
no soxwarp/libsock5confdir.h file. 

do you know why ?






[courier-users] configure / make install problem

2003-03-10 Thread Paeddy



sorry, this was my problem, solved now

thanks anyway

patrick


[courier-users] configure error in module.local?

2003-03-07 Thread Trey Keifer
Can someone decipher this for me... This is on a Solaris 9 box with the full
courier package

Commad:
./configure -enable-imap-workarounds -enable-mimetypes=/etc/apache/mime.type
s

Results in:
---
configure: configuring in module.local
configure: running /bin/bash
./configure' --prefix=/usr/lib/courier  --without-shared
'--prefix=/usr/lib/courier' '--enable-workarounds-for-imap-client-bugs'
'--enable-mimetypes=/etc/apache/mime.types'
'--with-userdb=/usr/lib/courier/etc/userdb'
'--with-makedatprog=/usr/lib/courier/libexec/courier/makedatprog'
'--with-piddir=/usr/lib/courier/var/tmp' '--with-package=courier'
'--with-version=0.41.0' '--with-db=gdbm' '--with-mailuser=courier'
'--with-mailgroup=daemon' '--enable-trusted-groups=daemon' '--with-formdata'
'--enable-utf7-folder-encoding' '--enable-unicode=iso-8859-1'
'--with-authchangepwdir=/usr/lib/courier/libexec/authlib/changepwd'
'--with-webadmindir=/usr/lib/courier/share/courierwebadmin'
'--cache-file=/dev/null'
'--srcdir=.' --with-softlinkdir=/usr/lib/courier --with-transport='uucp
local fax esmtp
dsn' --with-mailuid=108 --with-mailgid=12 --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... ./../../install-sh -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether make sets ${MAKE}... yes
checking whether make sets ${MAKE}... (cached) yes
checking for gawk... (cached) nawk
checking for g++... g++
checking for C++ compiler default output... a.out
checking whether the C++ compiler works... configure: error: cannot run C++
compiled programs.
If you meant to cross compile, use `--host'.
configure: error: /bin/bash './configure' failed for module.local
configure: error: /bin/bash './configure' failed for courier



--
Trey Keifer - [EMAIL PROTECTED]
CTO - Global Messaging Solutions, Inc.
913.338.3000 x309 - http://www.gmsi1.com



---
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger 
for complex code. Debugging C/C++ programs can leave you feeling lost and 
disoriented. TotalView can help you find your way. Available on major UNIX 
and Linux platforms. Try it free. www.etnus.com
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] Configure problem

2003-03-02 Thread Neil Harrison
Title: Configure problem







Hello all,


I am experiencing the problem listed in the FAQ to do with:


Configuration script reports the following error, and stops: Cannot find either the gdbm or the db library

I am using a Mandrake 9.0 system and the rpm libgdbm2-1.8.0-18 mdk is installed. I have read the instructions in the FAQ and tried using:

LDFLAGS=-L/usr/lib

export LDFLAGS

./configure

But still the same error. Can anybody help me out on this one?

-Neil





Re: [courier-users] Configure problem

2003-03-02 Thread Keith Matthews
On Sun, 2 Mar 2003 00:09:51 -0800
Neil Harrison [EMAIL PROTECTED] wrote:

 
 Hello all,
 
 I am experiencing the problem listed in the FAQ to do with:
 
 Configuration script reports the following error, and stops: Cannot
 find either the gdbm or the db library
 I am using a Mandrake 9.0 system and the rpm libgdbm2-1.8.0-18 mdk is
 installed.  I have read the instructions in the FAQ and tried using:
 LDFLAGS=-L/usr/lib
 export LDFLAGS
 ./configure
 But still the same error.  Can anybody help me out on this one?

Don't know Mandrake but you may well be wanting development libraries
which are in a different rpm. Check the install CDs for something like
libgdbm2-devel and install that.


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure script can't locate Perl

2003-02-12 Thread Malone
Hi,

  I'm trying to compile courier-imap-1.7.0. I've read through the 
installation instructions and im currently trying to configure the 
package. The problem is when it gets to the unicode configure script it 
cannot locate Perl and quits.

  I have Perl5.8 installed and an earlier part of the configure script 
manages to locate it (but not identify it as v5). Is there anyway I can 
help it locate Perl manually. Any hints of where im going wrong would be 
appreciated.

Below is the output from the configure command

sh-2.05a$ ./configure --prefix=/usr --with-piddir=/var/run 
--with-userdb=imapuserdb --sysconfdir=/etc --libexecdir=/usr/sbin 
--localstatedir=/var/imapd --without-authpwd --without-authshadow 
--without-authpam --without-authcram --without-authvchkpw 
--without-authldap --without-authpgsql --without-authdaemon 
--without-authcustom
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gawk... gawk
checking for a BSD-compatible install... /bin/install -c
checking whether ln -s works... yes
checking whether make sets ${MAKE}... yes
checking for perl5... no
checking for perl... /usr/bin/perl

snip

./config.status: cd: /dev/null: Not a directory
config.status: executing depfiles commands
configure: configuring in unicode
configure: running /bin/sh './configure' --prefix=/usr  '--prefix=/usr' 
'--with-piddir=/var/run' '--with-userdb=imapuserdb' '--sysconfdir=/etc' 
'--libexecdir=/usr/sbin' '--localstatedir=/var/imapd' 
'--without-authpwd' '--without-authshadow' '--without-authpam' 
'--without-authcram' '--without-authvchkpw' '--without-authldap' 
'--without-authpgsql' '--without-authdaemon' '--without-authcustom' 
--with-authchangepwdir=/usr/sbin/authlib --with-db=gdbm 
--with-makedatprog='/usr/sbin/makedatprog' --with-mailuser=root 
--without-socks --with-authchangepwdir=/var/tmp/dev/null 
--with-package=courier-imap --with-version=1.7.0 --cache-file=/dev/null 
--srcdir=.
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets ${MAKE}... yes
checking whether make sets ${MAKE}... (cached) yes
checking for a BSD-compatible install... /bin/install -c
checking whether ln -s works... yes
checking for ranlib... ranlib
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for perl5... no
checking for perl... no
configure: error: Perl not found.
configure: error: /bin/sh './configure' failed for unicode
sh-2.05a$ which perl
/usr/bin/perl
sh-2.05a$ perl -v

This is perl, v5.8.0 built for i586-linux




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure script portability bug

2003-01-31 Thread Paul Jarc
FYI, the configure bug I reported against courier-imap 1.6.2 is still
present in 1.7.0: for var in $PATH:/usr/local/bin does not work as
intended, even if IFS is set to :.  This will work:
for var in $PATH /usr/local/bin.

I'm not subscribed; Mail-Followup-To set.


paul


---
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] configure failed for webmail

2003-01-28 Thread Christopher Kushnier



Hi, I'm running 
FreeBSD 4.5 and am having a problem with courier.When I run the configure 
script, at the end of it i recieve thefollowing error:configure: 
error: /bin/sh './configure' failed for webmaili could not find 
anything in the docs about this error.if i proceed to the make step i get a 
Stop error saying that make failed for webmail.does anyone know what the 
cause and possible solution might 
be?Thanks!


[courier-users] Configure outlook express for two seperate maildirs

2003-01-22 Thread Dave Anderson
Hello,

I've created two seperate maildirs in a user's home dir on the imap server,
for two seperate mail accounts.

The problem comes in the user's mail client - If he sets up two
accounts, i.e. totally seperate email addresses, he connects to the same
imap server in each, and as the same user, but he can't type INBOX in
the root folder path of each otherwise they'd be identical configs. I'm
not sure how to 'tell' the client that there are seperate maildirs in
the user's home dir.

thanks for any help
Dave




---
This SF.net email is sponsored by: Scholarships for Techies!
Can't afford IT training? All 2003 ictp students receive scholarships.
Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more.
www.ictp.com/training/sourceforge.asp
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Configure outlook express for two seperate maildirs

2003-01-22 Thread Dave Anderson
Thanks.

As I said, the problem is how do you specify the different root folder paths
in outlook express. Normally, for one mail account, I put INBOX, and I guess
the imap server 'translates' that into ~/Maildir, but I don't know how that
stuff really works. If my second mail account was ~/Maildir2, what would go
in the root folder path box on the IMAP tab in outlook express.

regards
Dave

- Original Message -
From: Vizitiu, Ciprian [EMAIL PROTECTED]
To: 'Dave Anderson' [EMAIL PROTECTED];
[EMAIL PROTECTED]
Sent: Wednesday, January 22, 2003 10:37 AM
Subject: RE: [courier-users] Configure outlook express for two seperate
maildirs


 
  I've created two seperate maildirs in a user's home dir on
  the imap server, for two seperate mail accounts.
 
  The problem comes in the user's mail client - If he sets up
  two accounts, i.e. totally seperate email addresses, he
  connects to the same imap server in each, and as the same
  user, but he can't type INBOX in the root folder path of each
  otherwise they'd be identical configs. I'm not sure how to
  'tell' the client that there are seperate maildirs in the
  user's home dir.
 

 Last time when I have attempted this I ended up with two separate accounts
 like John_Doe and John_Doe1; then you can set separate mail accounts in
 Outlook and everything is OK. OTOH subfolders in Inbox are maildir folders





---
This SF.net email is sponsored by: Scholarships for Techies!
Can't afford IT training? All 2003 ictp students receive scholarships.
Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more.
www.ictp.com/training/sourceforge.asp
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] ./configure script error

2003-01-17 Thread Piotr Walczak



Hi all
I'm trying to start using courier-imap v 1.6.2, but 
the ./cofigure script gives me an error
The script says 
checking for fcntl... yeschecking for flock... nochecking for 
lockf... nochecking for locking method... configure: error: must specify 
--with-locking-method optionconfigure: error: ./configure failed for 
liblock
There is one more problem (if I remove the liblock I can pass the error). 

./configure script says that either wait or wait3 is invalid.

The same problem occure when I try to configure v 1.4.4

I was using courier-imap on the another machine and there was no 
problems.

May system is Linux Mandrake 7.2 with kernel 2.4.20 and gcc 2.95.3

Does anyone can give me the clue what is wrong with my Linux system

Thank You
Piotr Walczak


[courier-users] configure script portability bug

2003-01-02 Thread Paul Jarc
courier-imap 1.6.2 has some a shell portability bug in its configure
scripts.  They set IFS=: and then use for var in $PATH:/usr/local/bin.
$ find courier-imap-1.6.2 -name configure.in | xargs grep PATH:/usr/local/bin
AFAIK, Solaris is the only platform where this works as intended.  On
all other shells I've tested (Net/FreeBSD's /bin/sh, bash, pdksh),
$PATH will be split at colons, but the last component will be joined
with :/usr/local/bin to produce a path which probably does not exist.

The effect is that a command may not be found when it is present in
the last component of $PATH or in /usr/local/bin, and it may be found
in the wrong place if a directory such as /usr/bin:/usr/local/bin
happens to exist for some reason.

Fix: use a space instead of a colon to separate $PATH from
/usr/local/bin.  That works on all shells.


paul


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] configure hangs on sqwebmail 20021124 on solaris8

2002-12-04 Thread Ken McKittrick
Hello

I'm trying to install sqwebmail on a Netra1400t running Solaris8. The 
configure script is hanging. Any idea what the problem is?

bash-2.03$ ./configure --with-db=gdbm
checking for a BSD-compatible install... ./install-sh -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... no
checking for nawk... nawk
checking whether make sets ${MAKE}... no
checking whether make sets ${MAKE}... (cached) no
checking whether ln -s works... yes
checking for perl5... no
checking for perl... /usr/bin/perl
checking for sysconftool.. ././sysconftool
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for style of include used by make... none
checking dependency style of gcc... none
checking for gdbm_open in -lgdbm... yes
checking for gdbm_open... yes
It's hanging at this point

Thanks
Ken



---
This SF.net email is sponsored by: Microsoft Visual Studio.NET 
comprehensive development tool, built to increase your 
productivity. Try a free online hosted session at:
http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users


[courier-users] configure courier-imap with autldap problem

2002-11-13 Thread Martin Montero



Hi:

I have installed : Suse 7.0 , OpenLdap 2.1.5, 
postfix and Courier-Imap 1.5.3.
When i try to compile Courier-Imap with OpenLdap, 
the courier don´t see the openldap.

whats happend here ???


this messages out when i configure

checking for ber_scanf in -llber... (cached) 
yeschecking for ldap_open in -lldap... (cached) nochecking for 
ldap_search_st... (cached) nochecking for ldap_start_tls_s... (cached) 
nochecking for ldap_result2error... (cached) no

thanks




[courier-users] Configure fails

2002-09-27 Thread E. Versaevel

I just can't figure this out :(

Same configure/exports on a Slackware 8.1 machine, no problems, but on a
Slackware 8.0 (remote) machine i just can't configure it :(
Both machines a fresh download/extract of the .tar.gz

erikje@monique:~/courier-imap-1.5.3$ export
CPPFLAGS=-I/usr/local/mysql/include/mysql
erikje@monique:~/courier-imap-1.5.3$ export
CFLAGS=-I/usr/local/mysql/include/mysql
erikje@monique:~/courier-imap-1.5.3$ export
LDFLAGS=-L/usr/local/mysql/lib/mysql -lmysqlclient
erikje@monique:~/courier-imap-1.5.3$
./configure --with-mysql-libs=/usr/local/mysql/lib/mysql \
--with-mysql-inc
ludes=/usr/local/mysql/include/mysql
--with-authmysql

Then the configure fails with:

checking return type of signal handlers... void
checking for off64_t... no
checking for flock_t... no
checking for setpgrp... yes
checking for setpgrp... (cached) yes
checking whether setpgrp takes no argument... configure: error: cannot check
setpgrp if cross compiling
configure: error: ./configure failed for liblock

If i leave out one of the exports (can't remember which one) i get
a --with-locking-method needs to be specified error :/

ehm? help ?






---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] ./configure failed for authlib

2002-09-26 Thread Clay Colburn

I am trying to compile courier-imap for use with vmailmgr and eventually
squirrelmail.  I do not have vpopmail installed on this machine and am
curious how I can get around this error:

configure: error: /home/vpopmail/etc/lib_deps does not exist - upgrade
vpopmail to the current version or fix the permissions on this file
configure: error: ./configure failed for authlib

Any help would be greatly appreciated.

Thanks

Clay



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] ./configure failed for authlib

2002-09-26 Thread Clay Colburn

I am trying to compile courier-imap for use with vmailmgr and eventually
squirrelmail.  I do not have vpopmail installed on this machine and am
curious how I can get around this error:

configure: error: /home/vpopmail/etc/lib_deps does not exist - upgrade
vpopmail to the current version or fix the permissions on this file
configure: error: ./configure failed for authlib

Any help would be greatly appreciated.

Thanks

Clay



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] ./configure failed for authlib

2002-09-26 Thread Brenda Bell

9/26/2002 21:36:27, Clay Colburn [EMAIL PROTECTED] wrote:

configure: error: /home/vpopmail/etc/lib_deps does not exist - upgrade
vpopmail to the current version or fix the permissions on this file
configure: error: ./configure failed for authlib

I just solved this same problem not more than five minutes ago.  I'm still 
feeling my way around so I'm not sure what I messed up in the process, 
but adding --without-authvchkpw eliminated the error and it appears I 
have a working install.  However, I'm not using VMailMgr or SquirrelMail 
so this may actually be a dependency you need for your particular 
configuration.

HTH.

Cheers,
   Brenda

 




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] configure problem

2002-05-16 Thread Arun Shrimali

Dear List,

I am very much new to this list as well as courier, infect trying to 
setup (yet not succeeded).

I am trying to set it up at RHL7.2 and following INSTALL document.
As per the Install document when I try to  ./configure   after a little 
bit configure following error appears

: openssl found but c_rehash was not found
: ./configure failed for rootcerts

can any body help me what is the problem and now what to do.

Regards

Arun

___

Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] configure problem

2002-05-16 Thread Anand Buddhdev

On Thu, May 16, 2002 at 02:17:25PM +, Arun Shrimali wrote:

 Dear List,
 
 I am very much new to this list as well as courier, infect trying to 
 setup (yet not succeeded).
 
 I am trying to set it up at RHL7.2 and following INSTALL document.
 As per the Install document when I try to  ./configure   after a little 
 bit configure following error appears
 
   : openssl found but c_rehash was not found
   : ./configure failed for rootcerts
 
 can any body help me what is the problem and now what to do.

Install the openssl-perl RPM, which provides the c_rehash program. Then
run configure again.

-- 
Anand Buddhdev
Personal site: http://anand.org

___

Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



Re: [courier-users] Configure courier on freebsd

2002-04-25 Thread Maxim Burgerhout

I'm not sure, but since I installed (and hence configured) courier just few
days ago on FreeBSD 4.2, you should be able to do it. Have you tried it
through the ports collection? Are your ports up to date?

- Original Message -
From: Tjeerd van der Zee [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 25, 2002 2:27 AM
Subject: [courier-users] Configure courier on freebsd


 Hi,

 I've been trying to configure courier 0.38.0 on freebsd 4.5 stable but
 unsuccesfull.
 When running the configure script i get the following error message:

 checking wether -lresolve is needed for res_query...
 configure: error: Cannot find fuction res_query
 configure: error: ./configure failed for courie

 Anyone know how i can fix this ?

 Thnx, Tjeerd van der Zee






 ___
 courier-users mailing list
 [EMAIL PROTECTED]
 Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] Configure courier on freebsd

2002-04-24 Thread Tjeerd van der Zee

Hi,

I've been trying to configure courier 0.38.0 on freebsd 4.5 stable but
unsuccesfull.
When running the configure script i get the following error message:

checking wether -lresolve is needed for res_query...
configure: error: Cannot find fuction res_query
configure: error: ./configure failed for courie

Anyone know how i can fix this ?

Thnx, Tjeerd van der Zee






___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users



[courier-users] configure: error: Cannot find either the gdbm or the db library.

2002-04-03 Thread Jordan R. Thompson



Help!
I cannot install courier!
I have gdbm installed on my machine.
I looked at the faq and it says there may be a 
problem if it is installed in a location different to what configure expects. It 
says"See "Q: I have OpenLDAP, or 
OpenSSL, or MySQL installed" for how to resolve this situation." but I cannot 
find thisquestion anywhere!!!

any help here wouldbe most helpful.

Thanks,
Jordan

BEGIN:VCARD
VERSION:2.1
N:Thompson;Jordan;R
FN:Jordan R Thompson
ORG:ThompCo, Inc
TEL;WORK;VOICE:(321) 777-8377
TEL;HOME;VOICE:(321) 777-8377
TEL;CELL;VOICE:(321) 243-8377
TEL;WORK;FAX:(509) 267-5577
TEL;HOME;FAX:(509) 267-5577
ADR;WORK:;;787 Loggerhead Island Way;Satellite Beach;Florida;32937;USA
LABEL;WORK;ENCODING=QUOTED-PRINTABLE:787 Loggerhead Island Way=0D=0ASatellite Beach, Florida 32937=0D=0AUSA
ADR;HOME:;;787 Loggerhead Island Way;Satellite Beach;FL;32937;USA
LABEL;HOME;ENCODING=QUOTED-PRINTABLE:787 Loggerhead Island Way=0D=0ASatellite Beach, FL 32937=0D=0AUSA
URL;HOME:http://JordanThompson.freeyellow.com
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20020403T040520Z
END:VCARD



[courier-users] ./configure error

2002-03-06 Thread Jason




Hello there,
I'm posting this again, just in case somebody out 
there can help me.
Been trying to install courier imap with mysql 
support on redhat 7.2.. I already have mysql up and running.

As descrbied in the FAQ, I did the 
following:

CPPFLAGS="-I/home/mysql/lib/mysql"
LDFLAGS="-L/home/mysql/lib/mysql"
export CPPFLAGS
export LDFLAGS
./configure --with-authmysql

configure stops with an error

configure: error: --with-authmysql specified but no 
mysqlclient.so
configure:error: ./configure failed for 
authlib

Please help

thanks in 
advance


Re: [courier-users] ./configure error

2002-03-06 Thread Kirill Miazine

* Jason [EMAIL PROTECTED] [20020306 17:53]:
 As descrbied in the FAQ, I did the following:
 
 CPPFLAGS=-I/home/mysql/lib/mysql
 LDFLAGS=-L/home/mysql/lib/mysql

LDFLAGS=-L/home/mysql/lib/mysql -lmysqlclient

 export CPPFLAGS
 export LDFLAGS
 ./configure --with-authmysql
 
 configure stops with an error
 
 configure: error: --with-authmysql specified but no mysqlclient.so
 configure:error: ./configure failed for authlib

-- 
Kirill

___
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users