Ubuntu Servers :: Not Getting Mail From PHP Form

Feb 17, 2011

I have several forms created on my server. I'm running Ubuntu server 10.04.

I was running Ubuntu server 10.10 up until Tuesday Night. I decided to go to Ubuntu Server 10.04 in favor of the long term support of it.

While running Ubuntu server 10.10 all my forms worked and would send the form data to my email without issue.

Now after transfer the site to Ubuntu 10.04 I'm not getting any of the email messages. I have verified my email works by sending a test email directly to the account.

View 5 Replies


ADVERTISEMENT

Fedora Servers :: Can't Get Php Form To Send Mail

May 7, 2009

home web server (running on port 21333). i'm running fedora 10 w/ LAMP and I can't get my php contact form on my website to send out mail. it looks like it sends but it doesn't (and I know the form works because it's the same one from my hosted web server). I've tried everything I can think of, disabled selinux, added apache to trusted mail users, changed the port to 2025 in case comcast blocks 25 (at least i think i did), added the port to the iptables and i have no idea where to go from here.

View 4 Replies View Related

Software :: Exim - Send A Mail Message Of The Form Mail

May 4, 2010

I am trying to do something really simple with Exim. I have two machine connected together via a hub. They can ping each other. They each are running openSuse 11.2 and have Exim installed. On each machine from the command line in start Exim as a daemon by typing: sudo /usr/sbin/exim -bd -d and each machine runs through some output and sits there "Listening". Then on either machine I try to send a mail message of the form mail

(or mailx) <user>@<other node>
some text
EOT

and absolutly nothing happens! I must be doing something wrong or daft which is very basic, but I have searched all over and cannot get it to work.

View 2 Replies View Related

Ubuntu :: Use Smtp Authentication For Php Mail Form?

Oct 28, 2010

The php mail form is designed using post function,normally the mails are not getting delivered without smtp authentication.So can someone say me on adding smtp authentication to php email form.

View 9 Replies View Related

Ubuntu :: Webpage Editor To Create Form And Form Fields?

Jun 10, 2010

I've already tried Seamonkey to create a web page but can find no way to create a web form in which I want to create form fields. Before moving to Ubuntu I used Microsoft FrontPage to create web pages with form fields. This was easy to do. what is available to do the same in Ubuntu?

View 2 Replies View Related

Ubuntu Servers :: Log On To The Same Account Form 2 Or Three Different Machines?

Jan 16, 2011

i want to start a home server in which i can log on to the same account form 2 or three different machines running ubuntu server. is it possible and if so, how?

View 9 Replies View Related

Ubuntu Servers :: Courier Mail 556 Address Unavailable - Cannot Recieve Mail ?

May 6, 2010

My courier server cannot recieve mail.

My freebsd installation has worked for quite some time w/o problems.

I'm using ubuntu as a replacement and have tried using the same settings from my previous server.

I keep getting the following error.

courieresmtpd:

View 1 Replies View Related

Ubuntu Servers :: Secondary Mail Server And A Mail Gateway/relay?

Aug 3, 2011

Our primary mail server is Exchange 2003 Standard on Windows Server 2003 Standard - don't shout at me; I inherited it already set up this way.I have a couple of hardware identical redundant servers (HP ML350 boxes), all with very fast 2 or 4 disk arrays, multiple core CPUs and plenty of memory, and I am looking at two potential new additions to the infrastructure.

A secondary mail server is high on my list of priories. I've been well and truly bitten by Exchange in the past and given that this particular box has been running four years straight and that it's mail store is dangerously large, having a secondary mail server in place suddenly makes a lot of sense.

A new Exchange 2010 box is currently being set up, but the secondary mail server will remain in place even when the new Exchange server is brought online, so this won't be a wasted exercise.... I also want a gateway box in place to filter and relay mail to the primary server, or to the secondary server if the primary is unavailable. Currently our outer perimeter is:

ISP supplied CISCO router
Draytek VigorPro 5510 UTM

Untangle running in bridged mode (primarily used for SPAM filtering, URL blacklisting, and very little else) Exchange 2003 sits behind the Untangle box. This is how I want to end up:

CISCO >> Draytek >> Ubuntu gateway >> Exchange/secondary mail server

I know I could replace/remove the Draytek but I want it to remain for several reasons, including lots of VPN dial-in users already configured and that it offers us an additional layer of email antivirus scanning before things hit the Exchange box. No point switching all of our remote workers over to new tunnels unnecessarily...

I have done some research and have started testing a pilot secondary mail server using Ubuntu/postfix DNS is properly set up and MX records and reverse PTR records are all present and correct, and things are looking encouraging so far. Before I go out over deep waters and start to flounder, has anyone who has done something like this got any obvious howlers I should be looking to avoid ?

View 2 Replies View Related

Ubuntu Servers :: Can't Send Mail Using PostFix - Only Receive Mail

Jun 30, 2011

I set up my mail server using the guide here: [URL] I am able to receive mail, I can send mail locally, but I can't send to external addresses. This is in my mail.log: Quote: Jun 30 14:40:43 Server postfix/smtp[10725]: 2FD9322015BF: to=<myemail@gmail.com>, relay=none, delay=1634, delays=1484/0.02/150/0, dsn=4.4.1, status=deferred (connect to alt4.gmail-smtp-in.l.google.com[74.125.65.27]:25: Connection timed out)

This is my main.cf:

[Code]...

View 6 Replies View Related

Ubuntu Servers :: Build Form On MySQL To Set Values

Sep 11, 2010

Is there a way to build a form so an admin can enter and add values to a database:
Example
Code:
use squid
insert into passwd values('testuser','test',1,'Test User','for testing purpose');
Is there a free software or an easy to configure script?

View 6 Replies View Related

Ubuntu Servers :: 10.04 LTS - PHP5 Email Contact Form

Nov 24, 2010

I am running Ubuntu 10.04LTS on a server. I am trying to make an e-mail contact form. When I hit submit, it says the message was sent. I check my e-mail and I don't see it. Does it not work with gmail? or do I need to use a system username@mydomain.net? This is the PHP mailer.

Code:
<?php
if(isset($_POST['submit'])) {
$to = "myemail@mydomain"; #This is set to my gmail.com e-mail.
$subject = "Unserv Form";
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];

$body = "From: $name_field
E-Mail: $email_field
Message:
$message";

echo "Message was sent!";
mail($to, $subject, $body);
} else {
echo "Error, it did not work! Please mention this to admin@unserv.net!";
} ?>

This is a snip of HTML from the contact site:
Code:
<form method="POST" action="sndmsg.php">
Name: <input type="text" name="name" size="19"><br>
<br>
E-Mail: <input type="text" name="email" size="19"><br>
<br>
Message:<br><textarea rows="20" name="message" cols="50">

View 6 Replies View Related

Ubuntu Servers :: Add Users Form Laptop (10.10) And NFS Shares

Dec 1, 2010

I have a server 192.168.1.14 (I will call it 14) it runs Ubuntu server 10.04 and I have my Ubuntu Laptop 192.168.1.3 ( I will call it 3) that runs Ubuntu 10.10. I need to find a way to add users from my Laptop (user X) or a Windows machine user (Y). What I am trying to accomplish is to have file permissions some for Y only and some for X only and some for a group that contains X and Y. Now I have a Dir, on the server 14, with the owner Z (server user) and I gave it permission 760. Now my user X, from Laptop 3, (they have the same name in real life) is not able to access those files on a NFS share.

I would like to have the 760 perm and be able to access those files without doing a 777. I am thinking to add all users (XYZ)to a group and give read permissions for the group. My dilemma comes when the users are on different machines. I already created equal users on server with the same name but it does not do the trick. When connecting to server from 3 I can't access files that are owner by the group where user Z belongs (even if user X has the same name and password). I am thinking there has to be a deeper way of identifying users.

View 1 Replies View Related

Ubuntu Servers :: Postfix Relay - Exchange Sends The Mail Instead Giving Recipient Mail A Valid Reverse DNS Lookup

Jan 12, 2011

The scenario: We have an external server that runs HTTP/DB servers for out shop system. Then, there's our local, in-house infrastructure that runs a.. yeah... Exchange 2010. The shop system on the external server needs to send mails to customers (order confirmations, invoices, etc.). seing as sending them directly through the local MTA (Postfix) would cause mail delivery problems because of reverse DNS issues, i've set the Postfix MTA to act as a satellite to our in-house Exchange Server, so the Exchange sends the mail instead, giving recipient mail servers a valid reverse DNS lookup.

Now, mails sent by the (proprietary, uneditable) shop system are relayed correctly and sent to the target e-mail address. My problem is: Mails not sent by the shop system, but by our own PHP scripts which run on that same external servers, are NOT relayed properly. So the Exchange is fine with the mails sent by the shop system, but not the mails sent by our scripts. This is what i get in the mail.log: The successfully relayed mail sent by the shop system:

[Code]....

View 2 Replies View Related

Ubuntu Servers :: Get Errors When Try And Access The Directory Form The Other Machine?

May 10, 2011

I have Ubuntu server 11.04 (LAMP, SAMBA) installed with the ubuntu-desktop interface (I am not yet experienced enough to run without it).My problem is I am trying to share the www directory through samba so I can edit the site, but no matter what I do I get errors when I try and access the directory form the other machine.I did add it to the smb.conf file, and it does show up fine on teh network, however, when I try and open or change the contents of the directory it says I am unauthorized.I tried:

Code:
sudo chown <sambausername> /var/www
even tried

[code]....

View 6 Replies View Related

Hardware :: No Form Feed After Printing Short Form?

Aug 13, 2010

We are using several printers on our Linux RH network to print customer invoices and receipts. Receipts are short forms of just 21 or 22 lines. Two of the printers (an HP LJ1300 and a Dell 5200) eject the receipt paper automatically; the other two HP (a LJ 4200 and a LJ2420) do not eject. You have to press the green button on the printer. Is there a solution to that? They are all set up with the same PCL settings.

View 3 Replies View Related

Server :: Configure Postfix To Relay Mail To Multiple Internal Mail Servers With Different Domains?

Aug 6, 2010

Two exchange servers internally. One is setup for example.com (192.168.1.10) and the other is setup for example2.com (192.168.1.20) Both are behind a single public IP.

I want to use postfix to sit in front of the two exchange servers. Postfix will accept mail for both domains and relay to the appropriate server. I have postfix installed with only defaults at this point.

View 2 Replies View Related

Ubuntu Servers :: View Cannot Be Shown Because It Uses An Invalid Or Unsupported Form Of Compression"

Mar 3, 2011

I'm successfully hosting an https site on my single available public facing IP address - but I want to expose a couple of internal web sites. Essentially, I have:[URL]..I get most of the way there by using mod_proxy and the directive:

[Code]...

View 1 Replies View Related

Ubuntu Servers :: Migrate Postfix Mail Server To Exchange 2010 Mail Server

Nov 3, 2010

I have a problem relate to posttfix.I want to mirgare postfix mail server to exchange 2010 mail server but I can't do it,u can help me.You can show me have to do configure postfix and exchange how to?

View 1 Replies View Related

Ubuntu Servers :: Make A Local Mail Server That Itself Is A Client To A WAN Mail Server?

Mar 10, 2011

How do I make a local mail server that itself is a client to a WAN mail server.I want the local mail server to query new mail every 30 minutes from the WAN server.

View 6 Replies View Related

Ubuntu Servers :: Send Mail (newsletter) From Web Servers

May 26, 2010

I handle several hundreds of domains. Mails are handled with google apps (but previously I used to have a full postfix/courrier setup with virtualhosting). Now what I need is to be able to send mail (newsletter etc...) from my web servers, but I don't need to receive mail on these servers.

View 4 Replies View Related

Ubuntu Servers :: How To See Which Mail Services I'm Using

Nov 29, 2010

I recently became responsible for a server running Ubuntu 10.04. I am trying to figure out how its outbound mail service is setup. Everything is working fine now, I just want to document how it is setup so if I need to rebuild the box I can do so without too much trouble when the pressure is on. It is a pretty basic setup, the only outbound mail gets sent from php scripts, the server does not receive incoming messages. Is there a place I can look to see what service is sending outgoing messages?

View 2 Replies View Related

Ubuntu Servers :: Can't Get Mail With Postfix On 10.10

Dec 18, 2010

I am trying to install a mail server (postfix). I followed the instructions (up until SMTP, I do not want that) on ubuntu pages, without any result. I can send mail, but I can't get any.

View 4 Replies View Related

Ubuntu Servers :: Squirrel Mail Can't Log In / What To Do?

Feb 9, 2011

I'm new to linux and trying to solve this problem. I have followed the perfect server 10.10 setup and I have got a basic page up and running. If I use the IP address of the server /webmail I can log in, if I use the .com/webmail I can't log in and get this error. code...

This is my output of ls -la /var/lib/squirrelmail/data/ code...

View 9 Replies View Related

Ubuntu Servers :: Using PHP To Send Mail?

Mar 3, 2011

I have setup a mail server on my remote Ubuntu 10.04 server using postfix.

Using Putty to SSH to the server, I can send mail, check mail, and the server accepts mail from other domains (gmail, yahoo, hotmail etc).

However, I cannot seem to send mail using PHP functions.

I have created a "test.php" file with the following contents:

[Code].....

When I run the .php file, nothing happens, and nothing logs in the mail logs, so I'm sure the server doesnt understand the mail command in PHP files, but I'm not sure how to go about fixing it.

Apache2, PHP5, postfix, and the additional necessaries are installed (this is a webserver/mailserver on 1 box)

View 9 Replies View Related

Ubuntu Servers :: Dovecot Won't Show Mail

Jan 15, 2010

I've got the problem that Dovecot won't show me my mail!

I've set up my mail_location to maildir:~/Maildir/, and set up a namespace

Code:
namespace private {
separator = .
prefix = INBOX.
inbox = no

[Code]....

I am able to copy mails from another account to the account on my server. But I've got no clue of where dovecot stores them. Not in /var/mail I've checked..

This happened after I re-installed with a 9.10 Ubuntu Server disc.

View 1 Replies View Related

Ubuntu Servers :: Setup E-mail To Alerts For When Something Goes Down

Jan 21, 2010

I have a server running ubuntu 8.10. I have monitoring software to monitor cerain devices on our LAN & WAN. However I need to set up e-mail on the server to mail me alerts for when something goes down. However this is where the problem comes in. I have never set up any mail clients on ubuntu server and am also not sure which one to use in this case. I have done some reading on squirrel mail and fetchmail. I am also aware there is roundcube and a few others available.

Here's my scenario: We have a mail server located off site. We use XP with Outlook on all our work machines. Outlook connects to the mail server using https with basic ntlm auth. So what I am trying to do is set up mail software to allow my server to send me an e-mail (using the above mail server) to my mail address so I get a mail whenever there's a problem with any of the devices being monitored.

View 3 Replies View Related

Ubuntu Servers :: Not Receiving Mail Exim

Feb 4, 2010

I've setup Exim4 as an MTA on my VM which has a static IP. I've pointed the MX records both idential to this static IP. I can send out via command line on the VM using Exim commands and receive the mail in my home account no problem, it also displays the correct from address ie rich@mydomain.co.uk

So I'm not sure what's going on with receiving the mail. If I send a mail from my home email to rich@mydomain.co.uk (not real address), I don't get a bounce or anything, it just goes out never to be seen again.

View 3 Replies View Related

Ubuntu Servers :: Mail Not Being Delivered Externally?

Mar 1, 2010

We've just setup an Ubuntu server as our main web server. The site's domain, say mydomain.com, has its DNS hosted elsewhere. A records are pointed to the IP address of the new server, so far so good. Email is however handled elsewhere. Sending mail to _anything but_ mydomain.com works fine. However when i try to send mail to me@mydomain.com the mail ends in /var/mail/me

how to deliver the mail externally?

Using Ubuntu 9.10 with sendmail

View 9 Replies View Related

Ubuntu Servers :: Postfix Mail Goes In Junkmail?

Mar 15, 2010

I use Ubuntu Server 9.10 64bit

at first, sendmail was installed and everything was working great. all the email sent from forum and webform I host as been sent correctly in the reception box of the recipient. But I want postfix as MTA to do my delivery to all my virtual domain I host.

when sendmail is uninstalled and postfix installed and all services configured(php included) and restarted(apache included), when I send a email from command line or from web form, the email goes in junk mail for some ISP email address and for gmail and the email did'nt show at all for hotmail. but email sent from forum (phpbb) still goes in reception box like normal email do.

I tried do change the headers, who was working with sendmail, of the email sent from web form without success.

so I tried to uninstall postfix and reinstall sendmail, restarted all service and every thing was back to normal... email sent goes in reception box.

I tried it twice.... sendmail, postfix, sendmail, postfix and now back to sendmail for a working solution until I get postfix working.

I tried with spf entry in my dns, I tried allowed icmp packet from outside with iptables, I tried many different headers for my email. My ip is not blacklisted anywhere.

View 9 Replies View Related

Ubuntu Servers :: Mail Server For Interal Use Only

Apr 9, 2010

I am talking classes at a university. One of my classes has a large group project. Part of the project has me setting up a mail server. I don't have a domain to use for this server, So I need to have it setup for local use only. but I have not been able to find much info on how to do so for local use only.

View 3 Replies View Related







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