Ubuntu Servers :: HTML PHP Email Configuration / Squirrelmail Setup

Sep 1, 2011

I'm having problems with emails containing HTML content. When Google downloads the email messages via POP3 from my squirrelmail server, the message does not display using HTML. I'm not sure if this is Google's fault or Squirrelmail's fault, but I've never had problems before on other servers running the same script and using squirrelmail. If I login to squirrelmail, I have the option to download the email message as an attachment. The attachment, if opened by my local browser, shows up as HTML content, and it is properly formatted. However, I'm using Google to download my emails and file them under my Gmail account. After Gmail downloads the messages, it shows up like this:

From
To admin@domainRemoved.com
Date Sat, Jul 30, 2011 at 6:07 PM
Subject Pending Registration

Content-type: text/html; charset=iso-8859-1
From: Name Removed <admin@domainRemoved.com>
Message-Id: <20110730234302.6B6FEDC08BA@eric-desktop>
Date: Sat, 30 Jul 2011 17:43:02 -0600 (MDT)

<p><b> After registering your client via your server, please visit the following URL to send them confirmation: </b></p>

I really need it to show up properly once Gmail downloads the messages, as it takes a long time to login to Squirrel mail and download each message as an attachment. My PHP Code Headers Look like this:
$headers = 'MIME-Version: 1.0' . " ";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . " ";
$headers .= "From: $uname <$email>";

Someone suggested that I remove the from my script. I did, and now the email shows a from sender as www-data www-data@domain.com. Before, the from field showed up as empty. However, my PHP script is designed to change the sender's information to the clients that contact me. Thus, if customer A contacts me, the email should be from customer A <custa@whatever.com>. However, it's not being changed by the PHP script. It works on every other server but mine. I think my postfix configuration isn't setup properly? What needs to be configured on it?

View 3 Replies


ADVERTISEMENT

Ubuntu Servers :: Internal Only Webmail / Can't Get Authentication Setup With Squirrelmail?

Nov 7, 2010

What is the fastest setup to do this? All I want is an internally authenticated webmail server that other servers can send mail to for collection of test emails. Don't need LDAP or anything fancy, just a internal LAN only webmail server. I've got Squirrelmail setup on Ubuntu Server and can't get authentication setup with Squirrelmail and every tutorial I read is way over complicated or has nothing on how to authenticate Squirrelmail with internal, system users.

View 2 Replies View Related

Ubuntu Servers :: Postfix / Courier And Squirrelmail Configuration

Aug 13, 2010

I have setup a postfix + courier + squirrelmail email configuration. I can get to the squirrelmail login page and run its test and it said everything was fine. After that I am stuck. What is the username and password or if it is not created, how do I create it?

View 3 Replies View Related

Ubuntu Servers :: How To Use Html Type To Send Email

Nov 24, 2010

I can only use plain text to send email via my postfix, how can I use html type to send email, is it something wrong?

View 4 Replies View Related

Ubuntu Servers :: Email Is Sent From The Mail Queue Its Not Delivered In Html Format - File

Nov 3, 2010

I have recently set up an ubuntu 10:04 based email server using postfix, clamav and squirrelmail. The setup works like a beast, much better than the old sco based system we were using. Anyway I work for a law firm, and we have use a bespoke case management system to complete work on cases. We have started a paperless office initiative. This means we are asking more and more clients and firms to correspond via email. This is where my troubles are kicking in. The governing body of solicitors in the UK is very picky, and we have to have certain formats and information in documents when sent out to clients, this is the same for emails.

I have a script that will cat the html header information, then cat the body of the email and finally cat the footer html information. The output of which is perfect and usable to the firm. My problem comes sending this file. The end of the script I have the following:

Code: mail -s $SUBJECT $CLIENTS_EMAIL < email.$$$ Pretty self explanatory. But when the email is sent from the mail queue its not delivered in html format but in plain text. Any email sent using outlook from any machine on the network can send and receive html email. How can I make this happen from the command line?

View 3 Replies View Related

Debian Configuration :: Email Encryption - How To Setup Mail Server

Feb 8, 2010

Could anyone point me to some simple articles that explain what email encryption is and how to set up a mail server (e.g. Exim) that can send secure emails? I know nothing about networks, mail servers, encryption, etc., but I have to be an expert on it before I walk into work tomorrow morning.

View 14 Replies View Related

Ubuntu Servers :: Setup Email Alerts For SVN Server

Jul 21, 2010

I recently setup a server running subversion. It is working well and all, but I am curious as to how to make it send out email alerts to my team when a commit occurs.Also, are their any good GUI tools to manage a subversion server in Ubuntu. The command line is fine since I made some scripts but a nice GUI would be great! Maybe that could be a fun project to work on.

View 1 Replies View Related

Ubuntu Servers :: CO.CC Free - Setup An Email Server For Domain

Apr 6, 2010

I have regged a Domain on CO.CC

Is it possible to setup an email server for that Domain on my Ubuntu box?

like: user@domain.co.cc

All for free?

View 1 Replies View Related

Ubuntu Servers :: Installed Postfix Setup - Can't Access Email

Nov 20, 2010

I installed Postfix, Amavis-new + Spamassassin + Clamav, Dovecot, and SquirrelMail today, using the Ubuntu guides for each. I have 10.04 LTS Server. My PHP scripts can send email, but when I tried to log into Squirrelmail, I couldn't. Here is what my error log produced (the server name and user name have been changed) :

Code:

myserver dovecot: imap-login: Login: user=<username>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured
myserver dovecot: IMAP(username): opendir(/home/username/Maildir) failed: Permission

[code].....

View 1 Replies View Related

Fedora Servers :: Yum Install For Mysql To Setup Email?

Oct 19, 2009

is this command exact or do I replace anything with my own setu

" yum install mysql mysql-devel mysql-server "

who can't tell what has to be changed for "My server name" and "my setup"

View 8 Replies View Related

Ubuntu Servers :: Setup Postfix To Relay Email It Cannot Deliver Locally?

Jul 17, 2011

I'm trying to setup postfix (or exim, I don't mind which), so I can move away my last remaining PC from Windows.I've tinkered with Postfix for good part of a month and I can get it to accept emails using SMTP and post them to a virtual mailbox based on MySQL tables. And it rejects mail addressed to local email addresses that it can't find in the table.

First question (or problem.) I've set up Postfix to relay email it cannot deliver locally such as is the case when you send out an email. My remote host requires authentication. How can I set this up?

Second question: I want to force my clients to use either AUTH, TLS or SSL, and not allow anonymous connections (to prevent an open relay server.) How do I set that up without interfering with the smarthost setting? The smarthost login is not one of my clients, it's a pre-determined login and password that is solely used for the email relaying aspect.

View 5 Replies View Related

Server :: Postfix Cannot Send Email From Thunderbird/Squirrelmail To Recipient Behind Firewall

Mar 22, 2011

My company email server has been working flawlessly for the last 5+ years. Recently, one of our clients put their email server behind a firewall (an assumption on my part; details below). Ever since, email sent from within the company (192.168.xxx.xxx internal address; all computers and server is behind a NAT firewall [Netgear FVX538]) is either being sent to the client after some delay (if email is sent using Outlook) or is being deferred until the messages expire (Thunderbird, Squirrelmail, etc.). Email sent to the client from anywhere outside the company (using Thunderbird, Outlook or any other email client) is also delivered without any problems (usually after a short delay).

All other emails to the World are being sent without any problems at all (both inside and outside the company; using any email client or webmail). I did contact the client's postmaster, but the client, being a large government agency, will probably not address the problem (if it is on their side) anytime soon. I am not sure if I can do anything from my end to solve the problem. Ever since the problem with the client began, I added two statements to the postfix configuration file (smtp_pix_workaround_delay_time = 20s and smtp_pix_workaround_threshold_time = 0s); this seemed to a bit - it reduced the delay for emails sent via Outlook to a few minutes (as opposed to 30+ minutes); emails sent using Thunderbird/webmail are still being deferred.

Server details: Dual quad-core processor machine, 32 GB RAM, dual 1 gbps network, running Fedora 14 (64-bit; loosely modeled along the lines of Perfect Server (with ISPConfig2) as described on the howtoforge website). Running Postfix (v. 2.7.1), Dovecot (v. 2.0.9).

Postfix details:

alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
body_checks = regexp:/etc/postfix/mbl-body-deny
broken_sasl_auth_clients = yes
command_directory = /usr/sbin

[code]....

I emailed the client's postmaster suggesting they disable smtp fixup. But still, what bothers me now is that Outlook works (both within and outside the company) while Thunderbird, webmail, etc. (used by ~90% of the users) do not. In addition, all email clients from outside the company can send email (authenticated via the company server) to the client without any problems. Is there anything I can do on my end to make non-Outlook clients work within the company (webmail is hosted on the company server; so, it would have an internal address as well)?

View 3 Replies View Related

Ubuntu Servers :: Setup An Email Client In Order To Send/receive Emails?

Oct 2, 2010

I want to setup an email client in order to send/receive emails, but since i am experiencing some issues with my ISP, i decided to setup an SMTP server with Postfix on my machine.The problem is that i can receive emails but i can not send.I read almost every thread in here refering to Postfix, but i could not find the problem on my configuration.So here it is..

Code:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
# Debian specific: Specifying a file name will cause the first

[code]....

View 6 Replies View Related

Ubuntu Servers :: Clients Can't Use The Email From The Outside - Configuration / Synchronize?

Mar 22, 2011

I have one local mail server hosted in Mdaemon in my office and ip is 192.168.10.2. My clients can't use the email from the outside. If they want to use the mail, they need to come to office. I want them to use from the outside. How can i set up the mail server. Do i need to host the server on the hosting? I want to synchronize with my local mail server. I don't have the public IP BTW.

View 2 Replies View Related

Networking :: WebMail I.e. Squirrelmail Setup / Error Connecting To IMAP Server: Localhost?

Apr 11, 2010

To configure webmail in linux5, I�ve followed below procedures:

-Squirrelmail-1.4.2.tar.gz and unzipped under the folder /var/www/html
-cd squirrelmail-1.4.2
-cd config
-within this directory, ./conf.pl
-From main menu, I did choose 2 for domain (i.e. arafapparels.com). This is my official domain
-Then save and exit
-For IMAP setting, I did choose D
-Selected uw and save, then exit
-Then from command line, I wrote chown �R apache.apache /var/www/html/data (I created folder data in the above path)
-I created a folder named as attach to keep attachment in /var/www/html i.e. /var/www/html/attach
-Then typed grep �R apache /var/www/html/attach
-Then typed chmod 730 /var/www/html/mail/attach (Here squirrelmail-1.4.2 directory has been moved to mail directory)
-Then from web browser/Internet explorer, I typed http://localhost/mail/
-Here Username & Password appears. Previously I have created username.
-But when put Username & Password, below error message displays

Error connecting to IMAP server: localhost
13: Permission denied
But I gave permission by chmod 777 /var/www/html/mail and by using 555 but no result.

View 2 Replies View Related

Ubuntu Servers :: New Users Can't Log Into SquirrelMail?

Jun 29, 2010

My problem is quite simple, when I set up squirrelmail I only had one user on the server, and now that I have created new users, I can not log in to their accounts via squirrelmail I am using Maildir System is 10.04 server, running postfix and dovecot. I origionaly set up 'remote' as a user, I can send and recive mail on that account and log into squirrelmail

any new accounts can send email to remote(via outlook/thunderbird), to be seen in Squirrelmail, but get an invalid username/password when I try to log into squirrelmail in short, new accounts can not log into squirrelmail

View 2 Replies View Related

Debian Configuration :: Install And Configure Webserver Squirrelmail

Aug 26, 2011

Trying to install and configure a webserver - With Postfix, Courier, MySQL And Squirrelmail. But I am stuck. Postfix mail system is not running. It seems to execute /etc/init.d/postfix start, but it really did not. reload; fatal: the Postfix mail system is not running. And in mail.log is that:
Master.cf: line 40: bad transport type: smtp_data_d$_done_timeout=1200

View 1 Replies View Related

Server :: Setup The Servers In A RAID Configuration?

Apr 15, 2010

I am rebuilding two microsystems servers and I need some advice to make my dreams come true.I want to setup the servers in a RAID configuration and want to install a GUI Linux application to manage a file server, manage a subnet, and host a Moodle on my subnet.I am planning to use Asus eee netbooks running Linux as my client computers. I basically need to be able to get my kids on the web and be able to have them use some open source office suite tools. No major crunching. I'll have two Macs for that.

View 3 Replies View Related

Ubuntu Servers :: How To Setup Based Cluster Configuration For Each Node

Jun 27, 2010

I need to setup an linux cluster ..so i prefer ubuntu because of support and i personally i use ubuntu.. and can any one explain in breif ..what all the things needed to setup an ubuntu based cluster my configuration for each node will be (totally 6 nodes) core2 duo with 4 gb ram i need 4 nodes and 2 for load balancing..

View 1 Replies View Related

Ubuntu Servers :: Can Connect Via Squirrelmail And Telnet But Not Through Mail

Apr 11, 2010

I setup my mail system on a clean install of Postfix and Dovecot from URl...on the:URL... part everything checks out yet when i input the details into Apple Mail it tells me That it Can't connect.I can Connect via Squirrelmail and telnet but not through mail.also my /var/log/mail.log s not recording anything and my mail.log.1 only goes up to april 6

View 2 Replies View Related

Ubuntu Servers :: Apache -> Squirrelmail Not Accessible From Internet

May 4, 2010

I set up a mail server today. Everything works except I can't access the damn squirrelmail web interface from the internet.

I followed this guide here: [URL]

I can access http://192.168.0.50/squirrelmail just fine from a computer on my local network.

*BUT*

When I access http://mywanip/squirrelmail, i get a connection timeout.

When I access http://mywanip, I get the standard Apache "IT WORKS!" Page. (Rules out port forwarding)

According to the guide, that should allow me to access squirrelmail from the internet on my server. Its as if Squirrelmail is only available on my local interface and not on my wan interface? How do I check?

View 5 Replies View Related

Ubuntu Servers :: Get Users To Be Autosubscribed To A Mailbox In Squirrelmail?

Jan 27, 2011

running squirrelmail, postfix and dovecot, I filter out mails which are spam into a spambox and non-spam into the inbox but by default, the user is not subscribed to the spambox and therefore, the spambox is not visible to the user, how can I make it such that each time a user is created he or she is automatically subscribed to the spambox?

View 6 Replies View Related

Ubuntu Servers :: Squirrelmail Doesn't Show New Mails

Feb 13, 2011

I have installed ubuntu 10.10 server which runs postfix and dovecot and squirrelmail for emails.There is something that i could not solve by myself.Squirrelmail sends emails fine however it does not show the mails that are received. I can see new mails via ssh in /var/mail.What could be the possible reason for this?

View 2 Replies View Related

Debian Configuration :: Multiple Virtual Servers Be Setup In 2 Desktops?

Jun 12, 2010

I now have 2 desktops running debian. I have virtual servers running in desktop 1, and I am hosting my photos using Gallery2. I have copied Gallery2 and the mysql over to desktop 2. I have entered port forward to desktop 1 using port 80 (using my router), and desktop 2 using port 1000. I can only access Gallery2 in desktop1. If I tried to access Gallery2 in desktop 2, I got re-directed to desktop1.

Questions:

1. Are home routers capable of port forward to more than one computers in a home network behind the firewall of the router? It is Belkin N+ router.

2. Can multiple virtual servers be setup in 2 desktops?

View 4 Replies View Related

Fedora Servers :: Squirrelmail: Can't Access Localhost

Jun 1, 2010

I'm running Fedora 12 on x86_64. I've installed squirrelmail, along with dovecot on my office server, and cannot access it through http://localhost/webmail. I have followed all the configuration steps I could find (including http://www.server-world.info/en/note...12&p=httpd&f=7).

I know that everything else is working (I can send and receive mail, access IMAP mailboxes, webserver is working), browsing to

http://localhost/webmail

just gives me

"Problem loading page"

in Firefox. Sometimes, however the message is "Unable to connect."

I will add that I already tried installing Squirrelmail on another (i686) machine and had exactly the same problem.

/var/log/httpd/error_log says:

File does not exist: /var/www/html/squirrelmail

This makes it seem like aliasing is not working somehow.

View 3 Replies View Related

Ubuntu Servers :: Recommend A Web Interface Mail Client Like SquirrelMail?

Feb 12, 2011

I succeeded to install Postfix on my box. I also installed mailman.I don't understand what mailman do. It's similar to SquirrelMail? If no can you guys recommend a web interface mail client like SquirrelMail?

View 1 Replies View Related

Ubuntu Servers :: Install Postfix In Order To User Squirrelmail Or Roundcube?

Nov 20, 2010

I'm configuring a server but at this time I can't send mail. I tried using the PHP mail() function and it didn't work. Webmin says I have no mail configured. I'll be the only user and mail recipient. I've used Squirrelmail and Roundcube before and liked them.

Do I need to install Postfix in order to user Squirrelmail or Roundcube? How should I set up mail?

Here's my setup:

10.04 LTS Server edition
Webmin 1.520
Apache 2.x
MySQL 5.x
PHP 5.x

View 7 Replies View Related

General :: Copy And Forward Email To Multiple Email Servers Using Postfix?

Dec 31, 2009

I have an email setup where all of the emails from our email host is downloaded to our Linux server using Fetchmail. Then some of the incoming emails are sent to an MS exchange server (server1.domain.com) using Postfix. What i want to do is to send a copy of all emails to Another server (server2.domain.com) for redundancy.Can postfix be configured to send copies out to both?

View 1 Replies View Related

Server :: Routing Inbound Email To Multiple Email Servers?

Dec 21, 2009

I have recently setup a new mail server and have simulated sending and receiving on the new email server. The new email server will replace the primary one.I would like to setup the new email server in parallel with the existing one.This way i can observe issues that might occur and be aware of what could go wrong. I want to received mail to be delivered to both mail servers at the same time.I would like to use postfix, exim i find a bit to difficult to understand.I have thought of using transport maps, the only problem is that you can only forward mail to one server at a time using transport maps.I think recipient_bcc_maps and sender_bcc_maps could work, i would just like ideas of how i can do this.

View 5 Replies View Related

OpenSUSE :: KMail HTML Email Always Removes Empty Lines When Viewed In MS Exchange Outlook

Dec 8, 2010

When sending an HTML formatted email with KMail and viewing this email on an MS Exchange Outlook client, all the empty lines are removed. This appears to be a known issue (KMail & HTML. - KDE Community Forums), but I was hoping anyone here knows a workaround for this....?

This is REALLY annoying when using KMail in a business setting, since emails look embarrassing on a customer's email client (which is in 99% of the cases Outlook, I'm afraid).

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved