Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,207
» Latest member: Meup
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 169 online users. » 0 Member(s) | 166 Guest(s) Applebot, Bing, Google
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 68
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 73,894
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 30,459
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,647
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,052
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,632
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 103,442
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 44,182
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 34,626
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,152
|
|
|
Emails not being sent to Hotmail from site |
Posted by: thehappyappy - 2008-05-09, 09:07 AM - Forum: SMTP
- No Replies
|
 |
I have a strange problem. I have a script that sends out emails and it used to work fine to all email addresses, but I recently moved the site to a dedicated server and now it won't send out emails to any Hotmail accounts. None of the Hotmail accounts have got spam filters on and they all used to get email from the site. All of the script is the same as I say the only difference is the site is now on a dedicated server. Both the old and new servers are RedHat Linux using php5. I went into the php.ini file and all I found for SMTP is:
Quote:[mail function]; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
;sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = /usr/sbin/sendmail -t -i
The send_mail() function is:
Code: <?php
function send_mail($to, $from, $subject, $message)
{
global $g;
if (isset($g['options']['mail_html']) and $g['options']['mail_html'] == "Y") $ct = "text/html";
else $ct = "text/plain";
if (isset($g['options']['mail_utf8']) and $g['options']['mail_utf8'] == "Y") {
$headers = "From: " . $from . "\n";
$headers .= "Content-Type: " . $ct . "; charset=utf-8;\n";
$headers .= "Reply-To: " . $from . ";\n";
$headers .= "Return-Path: " . $from . ";\n";
} else {
$headers = "From: " . $from . "\n";
$headers .= "Content-Type: " . $ct . ";\n";
$headers .= "Reply-To: " . $from . ";\n";
$headers .= "Return-Path: " . $from . ";\n";
}
if (isset($g['options']['mail_utf8_subject']) and $g['options']['mail_utf8_subject'] == "Y") $subject = '=?UTF-8?B?'.base64_encode(trim(preg_replace('#[\n\r]+#s', '', $subject)))."?=\n";
mail($to, $subject, $message, $headers);
}
but that all works fine. It's just that the emails aren't being sent to Hotmail addresses.
I read something about port 25 being blocked and that's why Hotmail addresses aren't receiving the emails, but I've just checked and port 25 is definitely not blocked:
Quote:# Generated by iptables-save v1.3.5 on Tue May 6 15:45:00 2008*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 80 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 443 -m state --state NEW -j ACCEPT
-A INPUT -p udp -m udp --dport 53 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 53 -m state --state NEW -j ACCEPT
-A INPUT -p udp -m udp --dport 69 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 69 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 25 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 110 -m state --state NEW -j ACCEPT
-A INPUT -p udp -m udp --dport 123 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 20 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 21 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 3306 -m state --state NEW -j ACCEPT
-A INPUT -p udp -m udp --dport 3306 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 5555 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 8002 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 9001 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 999 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 1982 -m state --state NEW -j ACCEPT
-A INPUT -p tcp -m tcp --dport 1983 -m state --state NEW -j ACCEPT
-A INPUT -j DROP
-A OUTPUT -o lo -j ACCEPT
-A OUTPUT -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
COMMIT
# Completed on Tue May 6 15:45:00 2008
|
|
|
how does this true Noob install things. |
Posted by: mookbooker - 2008-05-08, 04:09 AM - Forum: How Do I?
- No Replies
|
 |
Just got a dell inspiron 1000 from a friend that was chucking it. I have install Fedora 8 onto it and it is alive! I wanted to install a neat program called beryl. As this is my first time using linux im dazed and confused. I saw beryl requirements are..aquamarine, heliodor, emerlad, emerlad themes. I downloaded these and after some reading tried to uncompress by going to my terminal figured out how to get to the correct directory,
Did the unpack with tar xvzf pkgname.tar.gz then I went into that new directory a
nd tried to configure by ./configure and when I do that everything is configured correctly except for
"checking for kde-config... not found
configure: error: The important program kde-config was not found!
Please check weather you installed KDE correctly."
Also I tried to this: yum install beryl-core-0.2.1
this said
"Setting up install process
parsing package install arguments
no package beryl-core-0.2.1 available.
nothing to do"
ps. No Idea what im doing just wish this stuff would work. would a rpm help me? what is that
|
|
|
Greets from Baghdad, Iraq |
Posted by: katami - 2008-05-06, 03:48 PM - Forum: Hello
- No Replies
|
 |
Hey guys,
A little about me, I suppose. I am 22 years old, my name is Mollie but everybody calls me Mols. I have been with linux-noob off and on since around early 2005 I think I started coming to the IRC room around Feburary of that year.
I have ventured into the world of linux a little bit at a time, the most I have come to using linux full time was with Gentoo and Ubuntu. I ran both for about two weeks, as 'experienced' as I am with computers and the concepts, linux just is not ready for me to use full time.
Most of my time is spent in the world of Windows doing IA/IMO,Network admin things for the Army and recently moved to Baghdad, Iraq for the next 12 months (it was 15, but 3 have since past). My primary job in the army is the IT field.
I think that about sums it up I guess? I tend to be here then leave for months, then come back for a few days/weeks then leave again. :(
|
|
|
Certifications |
Posted by: katami - 2008-05-06, 02:25 PM - Forum: General Chat
- No Replies
|
 |
Hey everybody!
I know it has been a minute since I have posted, as I write this I am sitting at work in Baghdad, Iraq. Yes, I am deployed (yay for money, boo for location!) Anyhow, I am fixing to start working on studying/testing for certifications. I am scheduled to be out of the Army by December 21, 2009. That gives me about 16 months? to try and get them. I want to be able to go from working in the Army doing IT to working as a civilian doing IT, however I currently do not have any college time or any certifications which I intend to start fixing now.
During my time in the army I have had several (lengthy) classes on everything from basic computers to building a Windows Server 2003 Active Directory Infrastructure with Exchange 2003 to designing, building and maintaining Cisco based networks. Unfortunately, the 4 years worth of Army classes do not really hold much value on the civilian side although the experience does. And with this in mind I would like to get a few certifications before I get out of the army to make it as easy as possible to transition to the ciivilian side. A few of you guys know me and know what I am capable of doing/learning, so I ask you this: What certifications should I go for mastering?
I currently have on my agenda: MCSE 2003, Cisco CCNA, Comp TIA A+ (2007 Objectives), Network+, Security+, and Linux+. Is this a good objective set or am I skewed on what I really need to aquire? I think most of these should be easy for me to study for and conquer with out a whole lot of effort and would also be key to getting a good job as a civilian.
Any real-world information and guidance on this would be greatly appreciated!
Very Respectfully,
Mollie
PS: I hope everybody has been safe and has had a wonderful year in the time I have been away!
|
|
|
Virtual IIS SMTP Server + Iptables |
Posted by: Aeternus - 2008-04-29, 02:36 PM - Forum: SMTP
- No Replies
|
 |
Hi Everyone, first post here!
I'd like some help with that situation:
I have a CentOS server running up (Let's say IP: 10.00.00.01)
Which emulate a Windows 2003 Server which has 2 Network Adapter. Let's say the IP of the IIS SMTP Server is 10.00.00.02.
Right now, on the 10.00.00.02 server that is a web application running that must send e-mail. The email are being created (they are found in c:\inetpub\mailroot\queue). I'm pretty sure that it's the firewall of the centos that are blocking the mail (iptables).
After a lots of unsuccesful attempt on iptables i've decided to remove everything that is being related to smtp and port 25 / 110 and ask for help!
Anyone encountered the same situation and can give me the basis of iptables to allow the mail to be sent?
Thanks a lot!
|
|
|
please help........opening ports |
Posted by: thehappyappy - 2008-04-29, 11:41 AM - Forum: Security and Firewalls
- Replies (1)
|
 |
Please can somebody help me. I'm trying to open ports 999, 1982 and 1983 but am not having much luck. I followed the post how to open ports and haven't been successful. I was told to make sure that your server TCP ports: 999, 1982, 1983 are fully open inbound and outbound and that destination IP address for those ports is 72.232.181.106.
I've been trying for ages to get these ports open, but haven't had any luck.
|
|
|
|