• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

problem with qmail installation

O

outtime

Guest
I have installed plesk 7.5 for linux, fc 3.
My problem is that /var is a partition point with 2Gb and i need change del maildir directory to /home because the disk space into /var is enought.
Can anyone help to me?
 
Are you saying that you need more than 2 gigs of space for your mail? This seems like alot.
This is definitely do-able without too much work. or downtime at all.
I could help you just relocate your mail files and get them all setup in the new location.

PM me if you are still in need of help. We can work out something.
 
qmail is not php and as far as I understand it follows symlinks w/o problem.. so that to move /var/qmail to /home/qmail:

# /etc/init.d/qmail stop
# /etc/init.d/courier-imap stop
# /etc/init.d/xinetd stop

# cd /var
# tar cf - ./qmail | tar xf - -C /home
# rm -fr ./qmail
# ln -s /home/qmail /var/qmail

# /etc/init.d/qmail start
# /etc/init.d/courier-imap start
# /etc/init.d/xinetd start
 
Originally posted by dirty
qmail is not php and as far as I understand it follows symlinks w/o problem.. so that to move /var/qmail to /home/qmail:

# /etc/init.d/qmail stop
# /etc/init.d/courier-imap stop
# /etc/init.d/xinetd stop

# cd /var
# tar cf - ./qmail | tar xf - -C /home
# rm -fr ./qmail
# ln -s /home/qmail /var/qmail

# /etc/init.d/qmail start
# /etc/init.d/courier-imap start
# /etc/init.d/xinetd start

Yeap that's pretty much what I would of done my self.
Very nice write up, good job, except I would use cpio not tar twice ;)
 
Thx for all

Thx for all but my problem now is that mysql and another scripts are working into /var and 2GB is enought space, i need change the partition space.
Thx for all.
 
Re: Thx for all

Originally posted by outtime
Thx for all but my problem now is that mysql and another scripts are working into /var and 2GB is enought space, i need change the partition space.
Thx for all.

You have a couple of options at this point:

1) Stop using your real /var and symlink it all to another bigger drive.

2) Go ahead and do the same with mysql as you did with qmail.

Either way would work, the first option might be the best, as it would solve all the problems together at once.

Feel free to PM me with any specific questions, etc.
 
Back
Top