Mailing List Archive

noob question
This did not work



;@ TXT ( "v=spf1 mx -all" )



All outbound mail is from box.smalltime.net



In bound is from illomen.koimedia.com.



Thanks



Walt





;

; Database file wollny.org.dns for wollny.org zone.

; Zone version: 0

;



@ IN SOA box.smalltime.net. walt.wollny.org. (

0 ; serial number

900 ; refresh

600 ; retry

86400 ; expire

60000 ) ; default TTL



;

; Zone NS records

;



@ NS box.smalltime.net.

@ NS ns2.koimedia.com.



;

; Zone records

;



@ A 66.244.198.40

@ MX 5 illomen.koimedia.com.

;@ TXT ( "v=spf1 mx -all" )

box.smalltime.net. TXT ( "v=spf1 mx -all" )

ftp A 66.244.198.40

mail A 66.244.198.40

www A 66.244.198.40





-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
Re: noob question [ In reply to ]
On Mon, Sep 13, 2010 at 22:25, walt <walt@wollny.org> wrote:
> This did not work
>
> ;@                      TXT             ( "v=spf1 mx -all" )
>
> All outbound mail is from box.smalltime.net
>
> In bound is from illomen.koimedia.com.

Try

v=spf1 a:box.smalltime.net -all

Since SPF is about how you send email (outbound), not about how you
receive email (inbound/MX).

--
                 Please keep list traffic on the list.

Rob MacGregor
      Whoever fights monsters should see to it that in the process he
        doesn't become a monster.                  Friedrich Nietzsche


-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
So is this syntax correct then?

Thanks I so hate spam

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
;@ TXT ( "v=spf1 mx -all" )
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
;mail A 66.244.198.40
www A 66.244.198.40



-----Original Message-----
From: Rob MacGregor [mailto:rob.macgregor@gmail.com]
Sent: Monday, September 13, 2010 2:29 PM
To: spf-help@listbox.com
Subject: Re: [spf-help] noob question

On Mon, Sep 13, 2010 at 22:25, walt <walt@wollny.org> wrote:
> This did not work
>
> ;@ TXT ( "v=spf1 mx -all" )
>
> All outbound mail is from box.smalltime.net
>
> In bound is from illomen.koimedia.com.

Try

v=spf1 a:box.smalltime.net -all

Since SPF is about how you send email (outbound), not about how you
receive email (inbound/MX).

--
Please keep list traffic on the list.

Rob MacGregor
Whoever fights monsters should see to it that in the process he
doesn't become a monster. Friedrich Nietzsche


-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription: https://www.listbox.com/member/?&
Unsubscribe Now: https://www.listbox.com/unsubscribe/?&
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
Re: noob question [ In reply to ]
At 22:25 13/09/2010 Monday, walt wrote:
>This did not work
>
>
>
>;@ TXT ( "v=spf1 mx -all" )

for several reasons if its from a bind zone file

A ; preceeds a comment thus everything following it is ignored

() are only of use if the bit inside "" is going to span multiple lines

@ is current origin, be specific where you can ie use domain.com {replace with your domain}

or leave it out if following the soa, ns mx or any other record already part of your domain

ie
$ORIGIN .
$TTL 86400 ; 1 day
alandoherty.net IN SOA ns1.alandoherty.net. hostmaster.orionnetwors.ie. (
2010080501 ; serial
43200 ; refresh (12 hours)
7200 ; retry (2 hours)
2419200 ; expire (4 weeks)
86400 ; minimum (1 day)
)
NS ns1.ssol.ie.
;etc.....
TXT "v=spf1 whatever.... -all"
or
alandoherty.net. TXT "v=spf1 whatever.... -all"

would both work @ is a useful shortcut if only used where its needed {usually for one file to be used by multiple domains and thus only in the original origin statement}

in the above putting an @ would cause the record to be associated with . not the domain it was intended for


>All outbound mail is from box.smalltime.net

then as said previously {by rob} why have any mention of the mx's that don't send mail in your spf

"v=spf1 ip4:66.244.198.40 -all"

is the fastest and nicest to people having to parse your spf {us recievers}

"v=spf1 a:box.smalltime.net -all"

is for when you don't control the ip but know if it moves ip the name will move too {thus is easier if the box.smalltime.net is run by another party}

>In bound is from illomen.koimedia.com.

utterly irrelevant other than proving that mx should as usual never be used in an spf record, and when it does work its by blind luck alone


>
>
>Thanks
>
>
>
>Walt
>
>
>
>
>
>;
>
>; Database file wollny.org.dns for wollny.org zone.
>
>; Zone version: 0
>
>;
>
>
>
>@ IN SOA box.smalltime.net. walt.wollny.org. (
>
> 0 ; serial number
>
> 900 ; refresh
>
> 600 ; retry
>
> 86400 ; expire
>
> 60000 ) ; default TTL
>
>
>
>;
>
>; Zone NS records
>
>;
>
>
>
>@ NS box.smalltime.net.
>
>@ NS ns2.koimedia.com.
>
>
>
>;
>
>; Zone records
>
>;
>
>
>
>@ A 66.244.198.40
>
>@ MX 5 illomen.koimedia.com.
>
>;@ TXT ( "v=spf1 mx -all" )
>
>box.smalltime.net. TXT ( "v=spf1 mx -all" )
>
>ftp A 66.244.198.40
>
>mail A 66.244.198.40
>
>www A 66.244.198.40
>
>
>
>
>
>-------------------------------------------
>Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
>Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]
>
>Archives: https://www.listbox.com/member/archive/1020/=now
>RSS Feed: https://www.listbox.com/member/archive/rss/1020/15739084-a04d3caa
>Modify Your Subscription: https://www.listbox.com/member/?&
>Unsubscribe Now: https://www.listbox.com/unsubscribe/?&
>Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

still god no

ok if you insist on using @ crazily {as i'm assuming this is the syntactic mess that is the box.smalltime.net zone file

@ A 66.244.198.40
MX 5 illomen.koimedia.com.
TXT "v=spf1 ip4:66.244.198.40 -all"
ftp A 66.244.198.40
TXT "v=spf1 -all"
;mail A 66.244.198.40
www A 66.244.198.40
TXT "v=spf1 -all"

assuming the {i'm not sure why they exist} hostnames of ftp.box.smalltime.net and www.box.smalltime.net don't send mail

if on the otherhand this is the zone for wollny.org

adding an out of zone record for box.smalltime.net. is an egregious mistake

and it should read instead

wollny.org. A 66.244.198.40
MX 5 illomen.koimedia.com.
TXT "v=spf1 ip4:66.244.198.40 -all"
ftp.woolny.org. A 66.244.198.40
TXT "v=spf1 -all"
;mail A 66.244.198.40
www.woolny.org. A 66.244.198.40
TXT "v=spf1 -all"

or just as the soa is obviously already correct but omitted

A 66.244.198.40
MX 5 illomen.koimedia.com.
TXT "v=spf1 ip4:66.244.198.40 -all"
ftp A 66.244.198.40
TXT "v=spf1 -all"
;mail A 66.244.198.40
www A 66.244.198.40
TXT "v=spf1 -all"

as the first records already inherit the name from the preceeding ns and soa records





>-----Original Message-----
>From: Rob MacGregor [mailto:rob.macgregor@gmail.com]
>Sent: Monday, September 13, 2010 2:29 PM
>To: spf-help@listbox.com
>Subject: Re: [spf-help] noob question
>
>On Mon, Sep 13, 2010 at 22:25, walt <walt@wollny.org> wrote:
>> This did not work
>>
>> ;@ TXT ( "v=spf1 mx -all" )
>>
>> All outbound mail is from box.smalltime.net
>>
>> In bound is from illomen.koimedia.com.
>
>Try
>
>v=spf1 a:box.smalltime.net -all
>
>Since SPF is about how you send email (outbound), not about how you
>receive email (inbound/MX).
>
>--
> Please keep list traffic on the list.
>
>Rob MacGregor
> Whoever fights monsters should see to it that in the process he
> doesn't become a monster. Friedrich Nietzsche
>
>
>-------------------------------------------
>Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
>Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]
>
>Archives: https://www.listbox.com/member/archive/1020/=now
>RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
>Modify Your Subscription: https://www.listbox.com/member/?&
>Unsubscribe Now: https://www.listbox.com/unsubscribe/?&
>Powered by Listbox: http://www.listbox.com
>
>
>
>-------------------------------------------
>Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
>Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]
>
>Archives: https://www.listbox.com/member/archive/1020/=now
>RSS Feed: https://www.listbox.com/member/archive/rss/1020/15739084-a04d3caa
>Modify Your Subscription: https://www.listbox.com/member/?&
>Unsubscribe Now: https://www.listbox.com/unsubscribe/?&
>Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

btw from a quick look at your inbound headers you have bigger sending issues than spf

your host greets/helos as "box" it should greet as "box.smalltime.net"

greeting as a non fully qualified domain name is cause enough for most receivers to drop you on the floor

also spf wont help in the slightest with spam {it only stops forgery of your domains {why you must setup an spf record for any/all of them [especially those that do not send mail] if you want to remove the ability for others to impersonate you {ok if everyone did this maybe we would stop some smalltime spam} but believe me the big spammers register their own domains use spf and just burn and dump them when done}

spfs only utility in anti spam is allowing people who want to white list you the ability to tell real you from forged you



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
I was just working on keeping the size down

Here is the whole DNS zone


;
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 0
;

@ IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

;
; Zone NS records
;

@ NS box.smalltime.net.
@ NS ns2.koimedia.com.

;
; Zone records
;

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
www A 66.244.198.40





-----Original Message-----
From: alan [mailto:spfdiscuss@alandoherty.net]
Sent: Monday, September 13, 2010 3:59 PM
To: spf-help@listbox.com; spf-help@listbox.com
Subject: RE: [spf-help] noob question

At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be
immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the
public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
Why do you have ( ) around the SPF record, it should be

box.smalltime.net. TXT " v=spf1 a:box.smalltime.net -all"

-----Original Message-----
From: walt [mailto:walt@wollny.org]
Sent: Monday, September 13, 2010 7:12 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

I was just working on keeping the size down

Here is the whole DNS zone


;
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 0
;

@ IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

;
; Zone NS records
;

@ NS box.smalltime.net.
@ NS ns2.koimedia.com.

;
; Zone records
;

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
www A 66.244.198.40





-----Original Message-----
From: alan [mailto:spfdiscuss@alandoherty.net]
Sent: Monday, September 13, 2010 3:59 PM
To: spf-help@listbox.com; spf-help@listbox.com
Subject: RE: [spf-help] noob question

At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be
immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the
public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
Sorry this is MS DNS?

It should be
box.smalltime.net. TXT v=spf1 a:box.smalltime.net -all



-----Original Message-----
From: Helgi Ragnarsson [mailto:helgir@svrnet.com]
Sent: Monday, September 13, 2010 7:17 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

Why do you have ( ) around the SPF record, it should be

box.smalltime.net. TXT " v=spf1 a:box.smalltime.net -all"

-----Original Message-----
From: walt [mailto:walt@wollny.org]
Sent: Monday, September 13, 2010 7:12 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

I was just working on keeping the size down

Here is the whole DNS zone


;
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 0
;

@ IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

;
; Zone NS records
;

@ NS box.smalltime.net.
@ NS ns2.koimedia.com.

;
; Zone records
;

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
www A 66.244.198.40





-----Original Message-----
From: alan [mailto:spfdiscuss@alandoherty.net]
Sent: Monday, September 13, 2010 3:59 PM
To: spf-help@listbox.com; spf-help@listbox.com
Subject: RE: [spf-help] noob question

At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be
immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the
public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
for listwatchers the cleaned up version was

{as it was sent offline by IM earlier}
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 3
;
wollny.org. IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

NS box.smalltime.net. ; Zone NS records
NS ns2.koimedia.com. ; Zone NS records

A 66.244.198.40
MX 5 illomen.koimedia.com.
TXT " v=spf1 ip4:66.244.198.40 -all"
ftp A 66.244.198.40
TXT "v=spf1 -all"
www A 66.244.198.40
TXT "v=spf1 -all"



At 00:12 14/09/2010 Tuesday, walt wrote:
>I was just working on keeping the size down
>
>Here is the whole DNS zone
>
>
>;
>; Database file wollny.org.dns for wollny.org zone.
>; Zone version: 0
>;
>
>@ IN SOA box.smalltime.net. walt.wollny.org. (
> 2010091301 ; serial number
> 900 ; refresh
> 600 ; retry
> 86400 ; expire
> 60000 ) ; default TTL
>
>;
>; Zone NS records
>;
>
>@ NS box.smalltime.net.
>@ NS ns2.koimedia.com.
>
>;
>; Zone records
>;
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>www A 66.244.198.40
>
>
>
>
>
>-----Original Message-----
>From: alan [mailto:spfdiscuss@alandoherty.net]
>Sent: Monday, September 13, 2010 3:59 PM
>To: spf-help@listbox.com; spf-help@listbox.com
>Subject: RE: [spf-help] noob question
>
>At 22:40 13/09/2010 Monday, walt wrote:
>>So is this syntax correct then?
>>
>>Thanks I so hate spam
>>
>>@ A 66.244.198.40
>>@ MX 5 illomen.koimedia.com.
>>;@ TXT ( "v=spf1 mx -all" )
>>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>>ftp A 66.244.198.40
>>;mail A 66.244.198.40
>>www A 66.244.198.40
>
>ok walt i see your situation is a little more grave
>
>your serial is zero so i suspect that zone file dosn't even have an soa??
>
>which is really really bad, for you, the internet everybody
>
>so send me {via the list as your server would in current state be
>immediately refused by my spam filters}
>
>your zone file in entirety
>
>i will send you back the one I believe you should have from looking at the
>public records and glue in the .com registry
>
>
>
>-------------------------------------------
>Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
>Modify Your Subscription: http://www.listbox.com/member/
>[http://www.listbox.com/member/]
>
>Archives: https://www.listbox.com/member/archive/1020/=now
>RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
>Modify Your Subscription:
>https://www.listbox.com/member/?&
>11
>Unsubscribe Now:
>https://www.listbox.com/unsubscribe/?&
>f363782
>Powered by Listbox: http://www.listbox.com
>
>
>
>-------------------------------------------
>Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
>Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]
>
>Archives: https://www.listbox.com/member/archive/1020/=now
>RSS Feed: https://www.listbox.com/member/archive/rss/1020/15739084-a04d3caa
>Modify Your Subscription: https://www.listbox.com/member/?&
>Unsubscribe Now: https://www.listbox.com/unsubscribe/?&
>Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
Yes

MS DNS

-----Original Message-----
From: Helgi Ragnarsson [mailto:helgir@svrnet.com]
Sent: Monday, September 13, 2010 4:21 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

Sorry this is MS DNS?

It should be
box.smalltime.net. TXT v=spf1 a:box.smalltime.net -all



-----Original Message-----
From: Helgi Ragnarsson [mailto:helgir@svrnet.com]
Sent: Monday, September 13, 2010 7:17 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

Why do you have ( ) around the SPF record, it should be

box.smalltime.net. TXT " v=spf1 a:box.smalltime.net -all"

-----Original Message-----
From: walt [mailto:walt@wollny.org]
Sent: Monday, September 13, 2010 7:12 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

I was just working on keeping the size down

Here is the whole DNS zone


;
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 0
;

@ IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

;
; Zone NS records
;

@ NS box.smalltime.net.
@ NS ns2.koimedia.com.

;
; Zone records
;

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
www A 66.244.198.40





-----Original Message-----
From: alan [mailto:spfdiscuss@alandoherty.net]
Sent: Monday, September 13, 2010 3:59 PM
To: spf-help@listbox.com; spf-help@listbox.com
Subject: RE: [spf-help] noob question

At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be
immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the
public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com
RE: noob question [ In reply to ]
Thanks Alen and everyone else.

I will pass on what I learned and keep the SFP flowing

Walt


-----Original Message-----
From: Helgi Ragnarsson [mailto:helgir@svrnet.com]
Sent: Monday, September 13, 2010 4:21 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

Sorry this is MS DNS?

It should be
box.smalltime.net. TXT v=spf1 a:box.smalltime.net -all



-----Original Message-----
From: Helgi Ragnarsson [mailto:helgir@svrnet.com]
Sent: Monday, September 13, 2010 7:17 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

Why do you have ( ) around the SPF record, it should be

box.smalltime.net. TXT " v=spf1 a:box.smalltime.net -all"

-----Original Message-----
From: walt [mailto:walt@wollny.org]
Sent: Monday, September 13, 2010 7:12 PM
To: spf-help@listbox.com
Subject: RE: [spf-help] noob question

I was just working on keeping the size down

Here is the whole DNS zone


;
; Database file wollny.org.dns for wollny.org zone.
; Zone version: 0
;

@ IN SOA box.smalltime.net. walt.wollny.org. (
2010091301 ; serial number
900 ; refresh
600 ; retry
86400 ; expire
60000 ) ; default TTL

;
; Zone NS records
;

@ NS box.smalltime.net.
@ NS ns2.koimedia.com.

;
; Zone records
;

@ A 66.244.198.40
@ MX 5 illomen.koimedia.com.
box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
ftp A 66.244.198.40
www A 66.244.198.40





-----Original Message-----
From: alan [mailto:spfdiscuss@alandoherty.net]
Sent: Monday, September 13, 2010 3:59 PM
To: spf-help@listbox.com; spf-help@listbox.com
Subject: RE: [spf-help] noob question

At 22:40 13/09/2010 Monday, walt wrote:
>So is this syntax correct then?
>
>Thanks I so hate spam
>
>@ A 66.244.198.40
>@ MX 5 illomen.koimedia.com.
>;@ TXT ( "v=spf1 mx -all" )
>box.smalltime.net. TXT ( " v=spf1 a:box.smalltime.net -all" )
>ftp A 66.244.198.40
>;mail A 66.244.198.40
>www A 66.244.198.40

ok walt i see your situation is a little more grave

your serial is zero so i suspect that zone file dosn't even have an soa??

which is really really bad, for you, the internet everybody

so send me {via the list as your server would in current state be
immediately refused by my spam filters}

your zone file in entirety

i will send you back the one I believe you should have from looking at the
public records and glue in the .com registry



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1370475-e89e0ad0
Modify Your Subscription:
https://www.listbox.com/member/?&
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
84def
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/
[http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/19360911-45700137
Modify Your Subscription:
https://www.listbox.com/member/?&
11
Unsubscribe Now:
https://www.listbox.com/unsubscribe/?&
f363782
Powered by Listbox: http://www.listbox.com



-------------------------------------------
Sender Policy Framework: http://www.openspf.org [http://www.openspf.org]
Modify Your Subscription: http://www.listbox.com/member/ [http://www.listbox.com/member/]

Archives: https://www.listbox.com/member/archive/1020/=now
RSS Feed: https://www.listbox.com/member/archive/rss/1020/1311530-08394398
Modify Your Subscription: https://www.listbox.com/member/?member_id=1311530&id_secret=1311530-644bccd5
Unsubscribe Now: https://www.listbox.com/unsubscribe/?member_id=1311530&id_secret=1311530-512c0f9e
Powered by Listbox: http://www.listbox.com