[LUAU] help on port 25

2007-11-09 Thread goku ball z
hay guys. I have a funny problem and I just can't figure out.  
  I just installed open suse 10.2 
  here is my problem on the suse box to test to see if port 25 is working i did 
the following
   
  telnet localhost 25   and it worked BUT. when I did the following 
   
  telnet domain.com 25  I got connection refused.
   
  I check the services, dns and everything I can think of can someone point 
me in the right direction?
   
  thanks
  goku

 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] help on port 25

2007-11-09 Thread goku ball z
hum... interesting... by the way I am using postfix... 
  thanks I will look into it...
  

Clifton Royston [EMAIL PROTECTED] wrote:
  On Fri, Nov 09, 2007 at 12:27:12AM -0800, goku ball z wrote:
 hay guys. I have a funny problem and I just can't figure out. 
 I just installed open suse 10.2 
 here is my problem on the suse box to test to see if port 25 is working i did 
 the following
 
 telnet localhost 25 and it worked BUT. when I did the following 
 
 telnet domain.com 25 I got connection refused. 
 
 I check the services, dns and everything I can think of can someone point 
 me in the right direction?

This is a simple one: 

domain.com has to resolve to a public address. Your MTA, whatever it
is, is set up for safety reasons to bind only to the localhost IP
address, and not to bind to the public IP addresses. Go look at the
configuration files for the MTA and figure out what it needs to bind to
the public IP address.

-- Clifton

-- 
Clifton Royston -- [EMAIL PROTECTED] / [EMAIL PROTECTED]
President - I and I Computing * http://www.iandicomputing.com/
Custom programming, network design, systems and network consulting services
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] help on port 25

2007-11-09 Thread goku ball z
sorry Jon, for security reason, I changed the ip address and the domain
  

[EMAIL PROTECTED] wrote:
  Quoting goku ball z :


 telnet: connect to address 70.259.59.10: Connection refused

Did you just make up that address for this email or are you really 
trying to connect to 70.259.59.10?

Jon



___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] help on port 25

2007-11-09 Thread goku ball z
the ip I made up for security reason

Clifton Royston [EMAIL PROTECTED] wrote:  On Fri, Nov 09, 2007 at 03:26:14PM 
-0800, goku ball z wrote:
 Hi dave, I am able to send mail out... thats no problem... =) but when 
 sending mail back that is when I run into problems. 
 the suse firewall has port 25 open and in the /etc/services the port 25 is 
 open.. Also when I do a netstat -ant port 25 is in LISTEN mode. So I know 
 that the port is ok... =) 
 
 check this out.So when I use the domain name it does not work I just 
 can't understand that
 hope you can help thanks
 
 test /home/goku telnet localhost 25
 Trying 127.0.0.1...
 Connected to localhost.
 Escape character is '^]'.
 220 test.example.com ESMTP Postfix
 
 test /home/goku telnet example.com 25
 Trying 70.259.59.10...

That is not a possible IP address; that's not what you've tried to
configure on this machine, is it? 

-- Clifton

-- 
Clifton Royston -- [EMAIL PROTECTED] / [EMAIL PROTECTED]
President - I and I Computing * http://www.iandicomputing.com/
Custom programming, network design, systems and network consulting services
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] help on port 25

2007-11-09 Thread goku ball z
yes I tried everthing 
   
  telnet domain.com 25
  telnet host.domain.com 25
  telnet mail.domain.com 25
   
  the only thing that works is telnet localhost 25
  =(
  

[EMAIL PROTECTED] wrote:
  Quoting goku ball z :

 sorry Jon, for security reason, I changed the ip address and the domain


No problem, just wondering. Also, you do try to telnet using 'telnet 
host.domain.com 25' and not 'telnet domain.com 25',right?

Jon


___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] help on port 25

2007-11-09 Thread goku ball z
hi vince, this is what I get when I do a netstat -an | grep 25
   
  tcp0  0 127.0.0.1:250.0.0.0:*   LISTEN
tcp0  0 ::1:25  :::*LISTEN
   
   very strange.  port 25 is fine..   
   
  when I do this   nothing happens...
  lsof -ni TCP:25



Vince Hoang [EMAIL PROTECTED] wrote:
  On 11/9/07, goku ball z wrote:
 yes I tried everthing

 telnet domain.com 25
 telnet host.domain.com 25
 telnet mail.domain.com 25

 the only thing that works is telnet localhost 25
 =(

My best guess is the default install has postfix only listening on
localhost. Check the inet_interfaces option in main.cf. A `netstat -an
| grep :25` or `lsof -ni TCP:25` will tell you if postfix is actually
binding to more than localhost on tcp/25.

 Quoting goku ball z :

  sorry Jon, for security reason, I changed the ip address and the domain

The problem with you masking your IP and domain name for security
reasons creates problems for those trying to help you. If your DNS is
wrong we cannot explicitly tell you what is wrong.

Here is a very good Postfix book:
http://www.amazon.com/Book-Postfix-State-Art-Transport/dp/1593270011/
and a good DNS book:
http://www.amazon.com/DNS-BIND-5th-Cricket-Liu/dp/0596100574
and a good Linux book:
http://www.amazon.com/Linux-Administration-Handbook-2nd-Nemeth/dp/0131480049

-Vince
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] Re: [buug] nano help!!!!

2007-10-20 Thread goku ball z
Hi Karen, I agree with your statement.  everyone should learn vi.  
  The reason why I wanted to install nano is that I just wanted to try 
something new.. =)
  

Karen Lofstrom [EMAIL PROTECTED] wrote:
  On 10/20/07, Eric Hattemer wrote:

 I have yet to find this hypothetical system that has vi, but doesn't
 have emacs, noxemacs, nano, pico, nedit, gedit, kwrite, jed, or joe; the
 ability to install one of these easier to use editors, or a file
 transfer utility that would allow you to do your editing remotely.

I gather that the justification for learning vi is that if your system
is hosed, vi will work when other editors are unavailable. Hence you
should use vi at all times, so that you can deal with problems.

I don't see why you couldn't learn enough vi to deal with problems,
and use another editor under ordinary circumstances. Sure, you'll be
slower in vi, and perhaps curse a lot, but you can still use it.

-- 
Karen Lofstrom
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] POSTFIX......

2007-10-19 Thread goku ball z
Hi Camron,
  Cool here goes... =)
   
  I want have 3 domain on the same server.  let's call them a1.com, b2.com and 
c3.com
   
  then let say I have 3 users let's call them joe smith, joe hill and joe atta.
   
  joe smith wants a email address as [EMAIL PROTECTED]
  joe hill wants a email address as [EMAIL PROTECTED]
  joe atta wants a email address as [EMAIL PROTECTED]
   
  and I don't think i am able to create a unix accout for all of them.  So I 
read somewhere that I need to create a non unix account, they can't login but 
just get their email via web mail or something like outlook.  I heard that some 
people used mysql to do it.  But what I want to know is that can I do it 
without using a data base.  Like Qmail.  you can create non unix account users 
without using mysql.  
   
  thanks
   
   
   
   
   
   
   
  

Camron W. Fox [EMAIL PROTECTED] wrote:
  goku ball z wrote:
 Hi all, I have a question regarding postfix. 
 
 I was searching and reading some books about postfix. But they really didn't 
 get in to non unix email accounts. So my question is...
 Is there a way without using mysql database to create non unix email 
 accounts? I know that you can have many domains, but I am more concern about 
 non unix email accounts...
 
 thanks
 

It would probably be a little easier to help if you could tell us 
exactly what you are trying to accomplish? When you say non unix email 
accounts, it's an all others kind of statement.

Best Regards,
Camron

Camron W. Fox
Hilo Office
High Performance Computing Group
Fujitsu America, INC.
E-mail: [EMAIL PROTECTED]

___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


Re: [LUAU] Re: [buug] nano help!!!!

2007-10-18 Thread goku ball z
ah sorry I think I miss something =)

Angela Kahealani [EMAIL PROTECTED] wrote:  On Wednesday,2007-10-17 22:37:32 
R. Scott Belford wrote:
 I've always heard about this one.  Is there a story behind it other
 than a pointless argument over superlatives?

my point exactly... these things are not resolvable,
because different people / circumstances yield different optimizations.

-- 
Copyright 2007 Angela Kahealani. All rights reserve without prejudice.
All information and transactions are private between the parties, and
are non negotiable. http://www.kahealani.com/ It's *all* just choice.
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau


[LUAU] POSTFIX......

2007-10-18 Thread goku ball z
Hi all, I have a question regarding postfix.  
   
  I was searching and reading some books about postfix.  But they really didn't 
get in to non unix email accounts.  So my question is...
  Is there a way without using mysql database to create non unix email 
accounts?  I know that you can have many domains, but I am more concern about 
non unix email accounts...
   
  thanks
   

 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
LUAU@lists.hosef.org mailing list
http://lists.hosef.org/cgi-bin/mailman/listinfo/luau