postfix help

2005-12-07 Thread Michael Sherman
Hello all.

I am trying to get postfix to relay mail through my ISP, without much
luck though.

I installed postfix with sasl compiled in:
ldd /usr/local/libexec/postfix/smtpd
libsasl.so.8 = /usr/local/lib/libsasl.so.8 (0x280be000)
libpam.so.3 = /usr/lib/libpam.so.3 (0x280cb000)
libcrypt.so.3 = /lib/libcrypt.so.3 (0x280d2000)
libsasl2.so.2 = /usr/local/lib/libsasl2.so.2 (0x280eb000)
libssl.so.4 = /usr/lib/libssl.so.4 (0x280ff000)
libcrypto.so.4 = /lib/libcrypto.so.4 (0x28132000)
libpcre.so.0 = /usr/local/lib/libpcre.so.0 (0x28243000)
libc.so.6 = /lib/libc.so.6 (0x2826b000)
libldap-2.2.so.7 = /usr/local/lib/libldap-2.2.so.7 (0x28354000)
liblber-2.2.so.7 = /usr/local/lib/liblber-2.2.so.7 (0x2837e000)

sasld is running, was started before postfix was.
ps aux | grep sasl
root14646  0.0  0.4  1444   712  ??  Is4:54PM   0:00.00
/usr/local/sbin/saslauthd1 -a pam

here is an excerpt of my main.cf

relayhost = smtp.broadband.rogers.com
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous
smtp_sasl_password_maps = hash:/usr/local/etc/postfix/sasl_passwd


Yet when I try to send any mail it gets bounced back by Rogers (which
uses Yahoo for mail services) :

tail /var/log/maillog

Dec  7 17:46:09 mike postfix/cleanup[14941]: 70BED50856:
message-id=[EMAIL PROTECTED]
Dec  7 17:46:09 FreeBSD postfix/qmgr[14908]: 70BED50856:
from=[EMAIL PROTECTED], size=565, nrcpt=1 (queue active)
Dec  7 17:46:09 m sendmail[14938]: jB7Mk981014938:
[EMAIL PROTECTED], ctladdr=michael (1001/1001), delay=00:00:00,
xdelay=00:00:00, mailer=relay, pri=30057, relay=[127.0.0.1]
[127.0.0.1], dsn=2.0.0, stat=Sent (Ok: queued as 70BED50856)
Dec  7 17:46:09 FreeBSD postfix/smtpd[14939]: disconnect from
localhost[127.0.0.1]
Dec  7 17:46:09 FreeBSD postfix/smtp[14942]: 70BED50856:
to=[EMAIL PROTECTED],
relay=smtp-rog.mail.yahoo2.akadns.net[206.190.36.18], delay=0,
status=bounced (host smtp-rog.mail.yahoo2.akadns.net[206.190.36.18]
said: 530 authentication required - for help go to
http://help.yahoo.com/help/us/mail/pop/pop-11.html (in reply to MAIL
FROM command))
Dec  7 17:46:09 FreeBSD postfix/cleanup[14941]: C244750865:
message-id=[EMAIL PROTECTED]
Dec  7 17:46:09 FreeBSD postfix/qmgr[14908]: C244750865: from=,
size=2600, nrcpt=1 (queue active)
Dec  7 17:46:09 FreeBSD postfix/qmgr[14908]: 70BED50856: removed
Dec  7 17:46:09 FreeBSD postfix/smtp[14942]: C244750865:
to=[EMAIL PROTECTED],
relay=smtp-rog.mail.yahoo2.akadns.net[206.190.36.18], delay=0,
status=bounced (host smtp-rog.mail.yahoo2.akadns.net[206.190.36.18]
said: 530 authentication required - for help go to
http://help.yahoo.com/help/us/mail/pop/pop-11.html (in reply to MAIL
FROM command))
Dec  7 17:46:09 FreeBSD postfix/qmgr[14908]: C244750865: removed

Any ideas?
Thanks in advance
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: postfix help

2005-12-07 Thread Michael Sherman
No, just postfix:
/etc/rc.conf

sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=NO
sendmail_msp_queue_enable=NO

and ls -l /usr/local/etc/rc.d/postfix.sh

lrwxr-xr-x  1 root  wheel  23 Dec  4 20:41
/usr/local/etc/rc.d/postfix.sh - /usr/local/sbin/postfix


ps aux | grep sendmail returns nothing

ps aux | grep postfix returns:

root  613  0.0  1.2  3404  2344  ??  Ss6:03PM   0:00.08
/usr/local/libexec/postfix/master
postfix   618  0.0  1.2  3424  2328  ??  S 6:03PM   0:00.03 pickup
-l -t fifo -u
postfix   619  0.0  1.3  3480  2408  ??  I 6:03PM   0:00.03 qmgr
-l -t fifo -u

root is the owner, since I reloaded it as root. Just doing testing.



On 12/7/05, Giorgos Keramidas [EMAIL PROTECTED] wrote:
 On 2005-12-07 18:01, Michael Sherman [EMAIL PROTECTED] wrote:
  Hello all.
 
  I am trying to get postfix to relay mail through my ISP, without much
  luck though.
 
  I installed postfix with sasl compiled in:
  ldd /usr/local/libexec/postfix/smtpd
libsasl.so.8 = /usr/local/lib/libsasl.so.8 (0x280be000)
libpam.so.3 = /usr/lib/libpam.so.3 (0x280cb000)
libcrypt.so.3 = /lib/libcrypt.so.3 (0x280d2000)
libsasl2.so.2 = /usr/local/lib/libsasl2.so.2 (0x280eb000)
libssl.so.4 = /usr/lib/libssl.so.4 (0x280ff000)
libcrypto.so.4 = /lib/libcrypto.so.4 (0x28132000)
libpcre.so.0 = /usr/local/lib/libpcre.so.0 (0x28243000)
libc.so.6 = /lib/libc.so.6 (0x2826b000)
libldap-2.2.so.7 = /usr/local/lib/libldap-2.2.so.7 (0x28354000)
liblber-2.2.so.7 = /usr/local/lib/liblber-2.2.so.7 (0x2837e000)
 
  sasld is running, was started before postfix was.
  ps aux | grep sasl
  root14646  0.0  0.4  1444   712  ??  Is4:54PM   0:00.00
  /usr/local/sbin/saslauthd1 -a pam
 
  here is an excerpt of my main.cf
 
  relayhost = smtp.broadband.rogers.com
  smtp_sasl_auth_enable = yes
  smtp_sasl_security_options = noanonymous
  smtp_sasl_password_maps = hash:/usr/local/etc/postfix/sasl_passwd

 I think you don't need sasld for uathenticating as a client.

  Yet when I try to send any mail it gets bounced back by Rogers (which
  uses Yahoo for mail services) :
 
  tail /var/log/maillog
 
  Dec  7 17:46:09 mike postfix/cleanup[14941]: 70BED50856: message-id=[EMAIL 
  PROTECTED]
  Dec  7 17:46:09 FreeBSD postfix/qmgr[14908]: 70BED50856:  from=[EMAIL 
  PROTECTED], size=565, nrcpt=1 (queue active)
  Dec  7 17:46:09 m sendmail[14938]: jB7Mk981014938:
  [EMAIL PROTECTED], ctladdr=michael (1001/1001), delay=00:00:00,
  xdelay=00:00:00, mailer=relay, pri=30057, relay=[127.0.0.1]
  [127.0.0.1], dsn=2.0.0, stat=Sent (Ok: queued as 70BED50856)

 Hmm, why do I see messages from both Postfix *AND* Sendmail here?

 You are not running both, right?


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Conflicting CDRW and DVDRW

2005-09-09 Thread Michael Sherman
I must have been too tired last night. They are indeed on a different
scbus, I was just looking at target and lun IDs. The problem was the
permissions on the /dev/passX.
Thanks a lot.

On 9/9/05, Fabian Keil [EMAIL PROTECTED] wrote:
 Michael Sherman [EMAIL PROTECTED] wrote:
 
  I am trying to burn a DVD with my Pioneer DVD writer (usb), but when I
  open K3B, the device is not listed. In fact the IDE CD burner isn't
  listed there as well. The kernel is configured with SCSI and ATAPICAM
  devices. It seems to me that my writers IDE and USB are conflicting,
  since the output of the camcontrol devlist produces:
 
  SONY SDT-9000 0400   at scbus0 target 6 lun 0 (sa0,pass0)
  PIONEER DVD-RW  DVR-108 1.18 at scbus1 target 0 lun 0 (pass1,cd0)
  SONY CD-RW  CRX140E 1.0n at scbus3 target 0 lun 0 (pass2,cd1)
 
 Where do you see the conflict here?
 
  Any ideas? Any hint will be appreciated.
 
 Do you run K3B as user? Does the user have write access to
 the needed devs (acdX, passX, xptX) or are the underlying programs
 running suid?
 
 If you have cdrecord installed, try running cdrecord -scanbus as the user
 you use for K3B and look at the error messages.
 
 Fabian
 --
 http://www.fabiankeil.de/
 
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Conflicting CDRW and DVDRW

2005-09-08 Thread Michael Sherman
Hi all.

I am trying to burn a DVD with my Pioneer DVD writer (usb), but when I
open K3B, the device is not listed. In fact the IDE CD burner isn't
listed there as well. The kernel is configured with SCSI and ATAPICAM
devices. It seems to me that my writers IDE and USB are conflicting,
since the output of the camcontrol devlist produces:

SONY SDT-9000 0400   at scbus0 target 6 lun 0 (sa0,pass0)
PIONEER DVD-RW  DVR-108 1.18 at scbus1 target 0 lun 0 (pass1,cd0)
SONY CD-RW  CRX140E 1.0n at scbus3 target 0 lun 0 (pass2,cd1)

Any ideas? Any hint will be appreciated.

Below included my kernel config and the output of dmesg.

#
# GENERIC -- Generic kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.6.2.2 2004/10/24
18:02:52 scottl Exp $

machine i386
#cpuI486_CPU
#cpuI586_CPU
cpu I686_CPU
ident   FreeBSD_CUSTOM  

# To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints # Default places to look for devices.

options SCHED_4BSD  # 4BSD scheduler
options INET# InterNETworking
options INET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options SCSI_DELAY=15000# Delay (in ms) before probing SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time 
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
options ADAPTIVE_GIANT  # Giant mutex is adaptive.

device  apic# I/O APIC

# Bus support.  Do not remove isa, even if you have no isa slots
device  isa
device  eisa
device  pci

# Floppy drives
device  fdc

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
device  atapist # ATAPI tape drives
device  atapicam# ATAPI CD WRITER
options ATA_STATIC_ID   # Static device numbering

# SCSI Controllers
#device ahb # EISA AHA1742 family
#device ahc # AHA2940 and onboard AIC7xxx devices
#device ahd # AHA39320/29320 and onboard AIC79xx devices
#device amd # AMD 53C974 (Tekram DC-390(T))
#device isp # Qlogic family
#device mpt # LSI-Logic MPT-Fusion
#device ncr # NCR/Symbios Logic
#device sym # NCR/Symbios Logic (newer chipsets + those of 
`ncr')

tape backup coredump

2005-09-06 Thread Michael Sherman
Good morning all.

I am having a problem with my tape drive, which gives me a coredump
when I try to bsdtar any directory. The gtar doesn't, however it
exits with an error message. I was wondering if anyone had similar
issues.

I am running 5.3 release, with the GENERIC kernel, only it was
recompiled with the following flags:

CPUTYPE?=p3
CFLAGS= -O -pipe

The SCSI card is Tekram, and the tape drive is Sony, the models can be
seen from the dmesg.

Copyright (c) 1992-2004 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 5.3-RELEASE #0: Tue Sep  6 09:14:39 EDT 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
ACPI APIC Table: DELL   WS 220 
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: Intel Pentium III (993.33-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x686  Stepping = 6
  
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 268034048 (255 MB)
avail memory = 252620800 (240 MB)
ioapic0: Changing APIC ID to 1
ioapic0 Version 2.0 irqs 0-23 on motherboard
npx0: [FAST]
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: DELL WS 220  on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
cpu0: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: Intel 82820 host to AGP bridge mem 0xf000-0xf3ff at
device 0.0 on pci0
pcib1: PCI-PCI bridge at device 1.0 on pci0
pci1: PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
pcib2: ACPI PCI-PCI bridge at device 30.0 on pci0
pci2: ACPI PCI bus on pcib2
trm0: Tekram DC395U/UW/F DC315/U Fast20 Wide SCSI Adapter port
0xec00-0xecff mem 0xfafff000-0xfaff irq 19 at device 10.0 on pci2
trm0: [GIANT-LOCKED]
xl0: 3Com 3c905C-TX Fast Etherlink XL port 0xe880-0xe8ff mem
0xfaffec00-0xfaffec7f irq 18 at device 12.0 on pci2
miibus0: MII bus on xl0
xlphy0: 3c905C 10/100 internal PHY on miibus0
xlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
xl0: Ethernet address: 00:b0:d0:a2:4a:60
isab0: PCI-ISA bridge at device 31.0 on pci0
isa0: ISA bus on isab0
atapci0: Intel ICH UDMA66 controller port
0xffa0-0xffaf,0x376,0x170-0x177,0x3f6,0x1f0-0x1f7 at device 31.1 on
pci0
ata0: channel #0 on atapci0
ata1: channel #1 on atapci0
uhci0: Intel 82801AA (ICH) USB controller port 0xff80-0xff9f irq 19
at device 31.2 on pci0
uhci0: [GIANT-LOCKED]
usb0: Intel 82801AA (ICH) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
pci0: serial bus, SMBus at device 31.3 (no driver attached)
pcm0: Intel ICH (82801AA) port 0xdc80-0xdcbf,0xd800-0xd8ff irq 17 at
device 31.5 on pci0
pcm0: [GIANT-LOCKED]
pcm0: Analog Devices AD1881A AC97 Codec
fdc0: floppy drive controller port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on acpi0
fdc0: [FAST]
fd0: 1440-KB 3.5 drive on fdc0 drive 0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: PS/2 Mouse irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model Generic PS/2 mouse, device ID 0
sio0: 16550A-compatible COM port port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
sio0: type 16550A
sio1: 16550A-compatible COM port port 0x2f8-0x2ff irq 3 on acpi0
sio1: type 16550A
ppc0: ECP parallel printer port port 0x778-0x77f,0x378-0x37f irq 7 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
ppbus0: Parallel port bus on ppc0
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
ppi0: Parallel I/O on ppbus0
orm0: ISA Option ROMs at iomem 0xc9800-0xcbfff,0xc-0xc97ff on isa0
pmtimer0 on isa0
sc0: System console at flags 0x100 on isa0
sc0: VGA 16 virtual consoles, flags=0x300
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
Timecounter TSC frequency 993327947 Hz quality 800
Timecounters tick every 10.000 msec
ad0: 76319MB ST380020A/3.60 [155061/16/63] at ata0-master UDMA66
ad1: 76319MB WDC WD800BB-00CCB0/22.04A22 [155061/16/63] at ata0-slave UDMA66
acd0: CDRW SONY CD-RW CRX140E/1.0n at ata1-master UDMA33
Waiting 15 seconds for SCSI devices to settle
sa0 at trm0 bus 0 target 6 lun 0
sa0: SONY SDT-9000 0400 Removable Sequential Access SCSI-2 device 
sa0: 10.000MB/s transfers (10.000MHz, offset 15)
Mounting root from ufs:/dev/ad0s1a
IP Filter: v3.4.35 initialized.  Default = pass all, Logging = enabled
pid 706 (bsdtar), uid 0: exited on signal 11 (core dumped)

Thanks in advance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL 

smssend/firewall port

2005-04-09 Thread Michael Sherman
Hi all.

I've installed the smssend program a few days back,
it's a greate piece of software. However I wasn't able
up till now to find out the TCP port number that it
uses, in order to enable it with IPFilter. Does anyone
have an idea?

Thanks in advance.

 Dont let the bugs in, close the Windows 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]