Linux How-To & Fixes
TCWebAdmin
TCWebAdmin
Apr 4th
Simply in webmin Create a new user for an email account.
System > Users and Groups > Create New User (bottom of list on right hand side)
Then go to create the mapping see the list example
Feb 21st
First off you need to setup Postfix and Dovecot, and optional Webmin (Used in this tutorial). Please refer to Ubuntu – Mailserver Setup first. Now you may also setup Webmin for Ubuntu/Debian downloaded here.
Now that you have the software configured and tested properly, we will now setup mailboxes and our new pop/imap & smtp server in our favorite email program.
I am using Ubuntu Server Edition 9.10. In this tutorial we will take the necessary steps to add a Linux user for a new Email Account and how to set it up using the Webmin Interface.

Make sure to use a password as shown and also to use a home directory as the mail folder will be used under the home directory for our user account.
Click Save and move on to the next step.

For "Name:" this is going to be our new Email Address. And "Maps to..." is the user account we just setup (this is going to be use for the mailbox).
Note: To make a Catchall Account in the Name: just use the @domain-name.com as the first part and direct it to a user account as shown. This will direct all emails not already declared to this user mailbox.
Click Save and move on to the next step.
Now there are a couple additional changes if you are choosing to use Windows Live mail or Outlook.
Now you need to the edit the /etc/dovecot/dovecot.conf file.
sudo vim /etc/dovecot/dovecot.conf
Change:
# uncomment this and change to no.
disable_plaintext_auth = no
Change :
pop3_uidl_format = %08Xu%08Xv
Restart Dovecot using the following command:
/etc/init.d/dovecot restart
Here is a screen shot of the Windows Live Mail / Outlook Settings.
May 29th
Just updated on of my x-desktops to Fedora 13 up from 12. Actually it isn’t a desktop at all, its one of my workhorse laptops. One of the disappointing problems originally out-of-the-box with Fedora 12 Constantine – with XFCE Desktop was that you cannot use laptop touch-pad synaptics (i.e. the right scroll wheel – touch pad thing, and the click on the touch pad to act as a left mouse click) .
Setup Synaptics Without HAL (Fedora 13++)
Setup Synaptics With HAL (Fedora 11, 12)
Below is the setup for Fedora 13 without HAL
As you may or may not already know, HAL has since been removed since the update of the latest version. There is virtually no support or updates for the outdated hal system, so now we will setup the mouse synaptics with the new xorg.conf in the new xorg.conf.d directory.
You will need basic knowledge of using su to become root, using an editor, and copying files. Be aware these settings are very generic, but may be not available on your specific device so check each of the following before continuing:
1.
su root
2.
vi /usr/share/X11/xorg.conf.d/50-synaptics.conf
Now your 50-synaptics.conf file should look like this:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
Option "VertEdgeScroll" "TRUE"
Option "TapButton1" "1"
EndSection
You should just be adding the two lines starting with Option, DO NOT MAKE ANY OTHER CHANGES!
3. Save and close
:wq
4.
reboot
If for whatever reason you are using Fedora 13+ and it is still not working, make sure you have xorg-x11-drv-synaptics installed first, and check below to make sure you do not have a HAL setup for your version of Linux.
When getting this to work under Fedora 12 using ‘hal’ I did the following as I have included my old directions.
Below is information on the 3 Button Taps. Any other Synaptics configuration can be put in as well, and if any other common configuration changes to be made are identified they can be added to this guide.
su root
yum install xorg-x11-drv-synaptics
cp /usr/share/hal/fdi/policy/20thirdparty/10-synaptics.fdi /etc/hal/fdi/policy/
vi /etc/hal/fdi/policy/10-synaptics.fdi
<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">3</merge>
<merge key="input.x11_options.TapButton3" type="string">2</merge>
<merge key="input.x11_options.VertEdgeScroll" type="string">1</merge>
<merge key="input.x11_driver" type="string">synaptics</merge>
</match>
</device>
</deviceinfo>
:wq
reboot
May 29th
This blog is dedicated to helping assist in troubleshooting and assisting in Linux and Windows Configurations, and mainly Server Administration.