FC 2 - Exim Problem

DarkMastah

Verified User
Joined
May 9, 2004
Messages
6
I just installed da on fedora core 2 everything is working fine except exim.

[root@server scripts]# ./exim.sh
Preparing... ########################################### [100%]
file /etc/aliases from install of da_exim-4.34-1 conflicts with file from package setup-2.5.33-1
Preparing... ########################################### [100%]
package da_vm-pop3d-1.1.7e-1 is already installed

Also give an conflict.

How can i fix this?

Many Thanks

Greets Dark
 
Hello,
Code:
wget http://files.directadmin.com/services/fedora_2/da_exim-4.34-1.i386.rpm
rpm -ivh --force da_exim-4.34-1.i386.rpm
cd /etc/virtual
touch blacklist_domains
touch whitelist_from
touch use_rbl_domains
echo "0" > limit
mkdir usage
chown mail:mail blacklist* whitelist* use_rbl* limit usage
John
 
DirectAdmin Support said:
Code:
wget http://files.directadmin.com/services/fedora_2/da_exim-4.34-1.i386.rpm
rpm -ivh --force da_exim-4.34-1.i386.rpm
cd /etc/virtual
touch blacklist_domains
touch whitelist_from
touch use_rbl_domains
echo "0" > limit
mkdir usage[/quote]
John,

Will just touching the extra files give them the right permissions?

Jeff
 
Hello,

You can chown them to "mail:mail" if you want.. in the next release, the installer will do that, but even if they are "root", they should still be readable (assuming the ususal user mask).

I'll change that post to maintain consistency.

John
 
I ran into the identical problem with my install of DA for Fedora Core 2 today. The only change I needed to make to the above script was to change:

echo "0" limit

to

echo "0" > limit

The problem was quickly solved and exim is running.
 
Back
Top