Errors from mx2.freebsd.org

2007-08-04 Thread Marcel de Reuver

Hi,

I receive postings from several mailinglists on a Fedora Core release 4 server 
with Sendmail v8.13.6/8.13.6.  Only postings that come from mx2.freebsd.org 
give errors like:

collect: premature EOM: Connection reset by mx2.freebsd.org
collect: I/O error on connection from mx2.freebsd.org, 
from=[EMAIL PROTECTED]
from=[EMAIL PROTECTED], size=1345, class=0, 
nrcpts=1, proto=SMTP, daemon=MSA, relay=mx2.freebsd.org [69.147.83.53]


Postings via mx1.freebsd.org come in with no problem at all. Does someone knows 
what is going on?

Regards,
Marcel



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: postfix and greylisting

2007-03-05 Thread Marcel de Reuver

Dave wrote:
I've set up greylisting with postgrey on postfix 2.3, on a 6.1 
machine. All seems to be working well, except my bank can't get 
through, and i'm wondering how to let them through, what file to edit 
the user or the recipient file?

perldoc postgrey

  Whitelists

  Whitelists allow you to specify client addresses or recipient 
address,
  for which no greylisting should be done. Per default postgrey 
will read

  the following files:

   /usr/local/etc/postfix/postgrey_whitelist_clients
   /usr/local/etc/postfix/postgrey_whitelist_clients.local
   /usr/local/etc/postfix/postgrey_whitelist_recipients

  You can specify alternative paths with the --whitelist-x options.

  Postgrey whitelists follow similar syntax rules as Postfix access
  tables.  The following can be specified for recipient addresses:

  domain.addr
domain.addr domain and subdomains.

  name@ [EMAIL PROTECTED] and extended addresses [EMAIL PROTECTED].

  [EMAIL PROTECTED]
[EMAIL PROTECTED] and extended addresses.

  /regexp/  anything that matches regexp (the full address is 
matched).


  The following can be specified for client addresses:

  domain.addr
domain.addr domain and subdomains.

  IP1.IP2.IP3.IP4
IP address IP1.IP2.IP3.IP4. You can also leave off one num-
ber, in which case only the first specified numbers will be
checked.

  /regexp/  anything that matches regexp (the full address is 
matched).


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Convert mbox to IMAP files

2006-05-08 Thread Marcel de Reuver

On Sunday 07 May 2006 23:03, Carlos Silva wrote:
 Hi,


 Someone know how can I convert mbox files to IMAP files?
 Thanks in advance!


Google for mbox2maildir if you want to convert to the Maildir format.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: user accounts messed up

2006-01-21 Thread Marcel de Reuver

   Jona Joachim wrote:

Hi!
I did something quite stupid...
I installed postgresql from ports and created an unprivileged user
account for it. I wanted to install the database in /var/pgsql and
wanted to chown the folder to the unprivileged user.
To do this, I entered the following as root: chown -R /var/pgsql/
As this command took more than two seconds I presumed chown had
followed .. and so I hit Ctrl-C. After having done this I tried to
switch to the unprivileged user account with su and it said something
like setuid not running. After having tried to recover from this
situation without success I decided to reboot the system. Now I can't
login to any user account anymore, not even root. I am told the
password is not correct. I tried to boot in single user mode, mount
/usr and change the root password with passwd but I am denied
permission to change master.passwd. Is it possible that the user
database is corrupt? I would be glad if anyone was able to help me.
Greetings, Jona
  

   In single user mode the file system is mouted readonly. You have to
   remount all the file systems read-write.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Opengroupware

2005-01-09 Thread Marcel de Reuver
Hi,

On FreeBSD 5.3 you can install Opengroupware from the ports without any
warning or error. When you start Opengroupware it is complaining about a
missing /usr/lib/libssl.so.0.9.6

OpenSSL 0.9.7d is installed and working. Has anyone Opengroupware running on
FreeBSD 5.3?

Best regards,
Marcel de Reuver

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Opengroupware

2005-01-09 Thread Marcel de Reuver
 
 First of all this is a port which requires the Linux/ELF
 binary emulation to be installed.

 Second - You shouldn't search in /usr/lib for required
 libraries. Instead you should search in ...
 
   - /compat/linux/usr/lib
 
 Because Opengroupware is searching for the Linux version
 of OpenSSL!
 
 I bet you'll find something like this ...
 
 [EMAIL PROTECTED] ls -la /compat/linux/lib/libssl.so.*
 -rwxr-xr-x1 root wheel  194416 Sep 24  2003 
 /compat/linux/lib/libssl.so.0.9.6b
 lrwxr-xr-x1 root wheel  16 Dec  6 19:46 
 /compat/linux/lib/libssl.so.2 - libssl.so.0.9.6b
 
 
 Do you see the problem? It is  libssl.so.0.9.6b 
 but Opengroupware is searching for  libssl.so.0.9.6 
 
 So this should solve the problem:
 
 ln -s /compat/linux/lib/libssl.so.0.9.6b \
 /compat/linux/lib/libssl.so.0.9.6
 

Also required:
ln -s  /compat/linux/lib/libcrypto.so.0.9.6b 
/compat/linux/lib/libcrypto.so.0.9.6

Opengroupware is now complaining about:
 /lib/libc.so.6: version `GLIBC_2.3' not found

Best regards,
Marcel de Reuver

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Opengroupware

2005-01-09 Thread Marcel de Reuver
 
  Also required:
  ln -s  /compat/linux/lib/libcrypto.so.0.9.6b
  /compat/linux/lib/libcrypto.so.0.9.6

 Yea I did forget that one ...

  Opengroupware is now complaining about:
   /lib/libc.so.6: version `GLIBC_2.3' not found

 Which  linux_base port did you install (8 or 7)?


After deinstalling linux_base version 7x and installing linux_base-8 it is
starting. Now there is something with the version of Postgres.

I will look into that later. Thanks for the hints!

Best regards,
Marcel de Reuver

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: This may be a stupid question but where can I compile quanta?

2004-12-11 Thread Marcel de Reuver
 
 I've searched the ports on freebsd.org googled around and still can't
 find where to compile quanta, am I overlooking something obvious?
 

FreeBSD 5.3-Stable

whereis quanta
quanta: /usr/ports/www/quanta

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Cyrus-SASL2-2.1.20 MySQL crypt'ed passwords

2004-11-28 Thread Marcel de Reuver

 Could anyone make this setup work? The patch for 2.1.19 applies cleanly to
 the ports tree and I can build sasl, but it ignores the settings on
 smtpd.conf (mainly password_format: crypt).

 I can auth @ SMTP using the encrypted password I find at the database, but
 no luck using the plaintext password (which cyrus-sasl should then crypt
 and check vs the database). -- Meaning the patch is having no effect, it
 is only checking the password feeded vs the database...

 Is there any way to have SMTP auth working with MySQL / crypt-stored
 passwords using postfix+cyrus-sasl2 ?



 smtpd.conf 
pwcheck_method: auxprop
mech_list: PLAIN LOGIN
auxprop_plugin: sql
srp_mda: md5
password_format: crypt
sql_engine: mysql
sql_hostnames: localhost
sql_database: postfix
sql_user: X
sql_passwd: X
sql_verbose: yes
sql_select: SELECT password FROM mailbox WHERE username = '[EMAIL PROTECTED]'
-

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: host-based ssh authentication (no password) not working ... helpneeded

2004-10-10 Thread Marcel de Reuver


Joe Schmoe wrote:
 
 I have machines CLIENT and SERVER.
 
 On SERVER, I set the following options in
 /etc/ssh/sshd_config :
 
 RhostsAuthentication  no
 RhostsRSAAuthentication   yes
 
 Then I copied the host public key from /etc/ssh on
 CLIENT to /etc/ssh/ssh_known_hosts on SERVER - so now
 the SERVER has the CLIENTs public key.
 
 Finally, I added the hostname of CLIENT to
 /etc/hosts.equiv on SERVER.  Then I HUPped sshd on
 SERVER.
 
 So now I go to CLIENT and run:
 
 ssh [EMAIL PROTECTED]
 
 and it asks me for a password!!
 

You have to disable PAM authentication:

--- sshd.conf: ---
...
# Change to no to disable PAM authentication
ChallengeResponseAuthentication no
...

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Which Release to Download?

2004-09-09 Thread Marcel de Reuver
 
 Dear Sir,
  
 I am a computer engineer and I want to learn the FreeBSD OS,
 and I do not have the FreeBSD software and when I have tried
 to download the FreeBSD software form your website, I found
 two Releases one called  New Technology Release: 5.2.1 
 and the other called  Production Release: 4.10  ,
 I got confused which Release to download ???
 Because I do not know the differences between the
 New Technology Release and the Production Release.
 Please tell me the differences between them,
 and which release should I have to download?
 Help me please.
  

You have to read the documentation at the FreeBSD website. Start with: 
http://www.freebsd.org/releases/5.2.1R/early-adopter.html


___

Helpman B.V.
P.O. Box 44, 9700 AA Groningen
Peizerweg 97, 9727 AJ Groningen
The Netherlands

tel +31 (0)50 5217555
fax +31 (0)50 5264878
http://www.helpman.com
___

DISCLAIMER NOTICE
Helpman BV accepts no liability for the content of this email, or for the consequences 
of any actions taken on the basis of the information provided, unless that information 
is subsequently confirmed in writing. If you are not the intended recipient you are 
notified that disclosing, copying, distributing or taking any action in reliance on 
the contents of this information is strictly prohibited. We advise you to carry out 
your own virus check before opening any attachment, as we cannot accept liability for 
any damage sustained as a result of any software viruses.

If you have received this email in error, or if you are concerned with the content of 
this email please notify us by telephone on +31 (0)50 5217555 and ask for the 
Communications Department.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: postfix/amavisd, fbsd 5.1

2003-11-25 Thread Marcel de Reuver

  I have upgraded a system to the latest postfix and amavisd
 port, a FreeBSD 5.1-RELEASE box. Sending mail works fine,
 however receiving mail, does not.
 Incoming messages get deferred because a connection to
 127.0.0.1:10025 times out. I can telnet successfully to that
 port so i am at a loss on this one.
 The only item that shows up in my maillog is what i already
 know, connection times out. Any help appreciated.

AMAVISD comes with a README.postfix, a full test is described. Can you run
this test?

Also you can test amavisd with the command:
 /path/to/amavisd -c /path/to/amavisd.conf debug
some extra debug info will be given.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


NFS mount problems

2003-11-24 Thread Marcel de Reuver
Hi,

I moved a RedHat Linux box for obvious reasons to FreeBSD v5.1
It is main job for that box is act like a mailhub. Also it servers Windows
clients as a Samba server. There are two NFS mounts of a HP-UX workstation.
With RedHat no problems, with FreeBSD noting but trouble with these mounts.
Even the box is rebooting itself

What is going wrong?

Regards,
Marcel de Reuver

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]