Matthias Apitz writes:
> Hello,
>
> Because I was forced by my ISP to do so, I have configured successfully
> as described in the FBSD docs the sendmail with SMTP AUTH;
>
> one question remains: the required file /etc/mail/auth/client-info has
> the line:
>
> AuthInfo:smtp.1blu.de
El día Friday, January 08, 2010 a las 06:57:04AM +0100, Matthias Apitz escribió:
> > Sounds like that's just graylisting. The delay will depend on how long
> > it takes your MTA (or the smarthost you use) to retry the message.
>
> In my case it seems not to be graylisting, but blacklisting; i.e.
Hello,
Because I was forced by my ISP to do so, I have configured successfully
as described in the FBSD docs the sendmail with SMTP AUTH;
one question remains: the required file /etc/mail/auth/client-info has
the line:
AuthInfo:smtp.1blu.de "U:root" "I:Y" "P:X"
whe
El día Thursday, January 07, 2010 a las 03:58:08PM -0500, Lowell Gilbert
escribió:
> > On 1/7/2010 2:18 PM, Matthias Apitz wrote:
> >>
> >> Hello,
> >>
> >> I have sent some hours ago a mail to freebsd-questions
> >> which went out fine to the MX of my ISP (as I can see in
> >> /var/log/maillo
On 1/7/2010 7:26 PM, Kevin Kinsey wrote:
> Hmm, having two optical drives might rise up and bite one's tushy;
> It could be that you're booting from a drive in BIOS that gets
> reassigned by the kernel to be "number two", and the kernel's
> attempting to find it one "number one". NO idea for cert
Programmer In Training wrote:
On 1/6/2010 5:07 PM, Programmer In Training wrote:
After testing out the boot disk on my mom's laptop, I have determined
there is an error somewhere with my computer. I don't know what it is or
where to even begin to look to fix it, but my computer is toast.
BI
Assuming I have the name of an interface, what's the easiest way
programmatically to get the status of the interface?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mai
On 7/01/2010 2:35 AM, Jerry McAllister wrote:
On Wed, Jan 06, 2010 at 06:20:53PM +0800, Paul Shi wrote:
Hi Everyone,
I am trying to find a way to setup a wireless network with a FreeBSD server
machine running FTP service. The release of FreeBSD I intend to use is 2.0.5
but I could not find
jaymax wrote:
>
> Thanks !!!
> Got it resolved after adding
> mysql_socket="/usr/tmp/mysql.sock" to the rc.conf file
> Removing the /etc/my.cnf file as the aetting were redundant with those
> used in the compilation
> deinstalling and reinstalling both the server and the client
>
[snip]
The "ne
On 8/01/2010 8:47 AM, Bernard T. Higonnet wrote:
echo starting in `pwd`
for hoo in *
do
echo $hoo
if [ -d "$hoo" ]
then echo pushing $hoo; cd $hoo
$0
else echo processing $hoo
fi;
echo going to next item
done
cd ..
I have tried various minor variations , all t
I'm not all that familiar with pf syntax, but you know ftp uses ports above
1023 right? Is pf "stateful" by default so it can allow the ports above 1023?
Also, make sure you're using passive (PASV) ftp.
G
-Original Message-
From: owner-freebsd-questi...@freebsd.org
[mailto:owner-fre
On Thu, Jan 7, 2010 at 2:38 PM, Dino Vliet wrote:
> Dear freebsd list,
> I have the following pf.conf file:
> tcp_services = "{ ftp, ssh, domain, www, auth, https }"
> udp_services = "{ ftp, domain, ntp }"
> icmp_types = "echoreq"
> block all
> pass inet proto icmp all icmp-type $icmp_types keep
Dear freebsd list,
There must be something simple I'm getting wrong in attempting a simple
recursive bash script.
I want to do something on every file in a tree, so I have a script which
recurses when it finds a directory and processes the file when it is not
a directory.
My testbed is a d
Dear freebsd list,
I have the following pf.conf file:
tcp_services = "{ ftp, ssh, domain, www, auth, https }"
udp_services = "{ ftp, domain, ntp }"
icmp_types = "echoreq"
block all
pass inet proto icmp all icmp-type $icmp_types keep state
#pass in proto tcp to any port 22 keep state
pass out prot
APseudoUtopia writes:
> Hey list,
>
> I'm working on a shell script that basically removes the group and the
> other permissions from certain files to harden my system. Right now,
> the only files I'm doing this on is the GCC compiler collection. I'm
> asking for suggestions on other files that t
Some point out rc.local as a fix, i find it ok to but it has some
ups'n'downs indeed in a reboot situation rc.local having the route add
command would be ok but in a short network restart it wouldn't count (as i
particularly value my uptime)... the ipv6 defaultroute it's not a big issue
for me, as
Programmer In Training writes:
> On 1/7/2010 2:18 PM, Matthias Apitz wrote:
>>
>> Hello,
>>
>> I have sent some hours ago a mail to freebsd-questions
>> which went out fine to the MX of my ISP (as I can see in
>> /var/log/maillog) but does not show up in the list and not
>> in the Archives. Th
On 1/7/2010 2:36 PM, Programmer In Training wrote:
> I too have a similar problem with my emails. They take about 30-45
> minutes to be posted to the list. According to Thunderbird the mail is
> sent (at least to my mail server @ Bluehost), and the time-stamp on the
> message reads as the time I s
On 1/7/2010 2:18 PM, Matthias Apitz wrote:
>
> Hello,
>
> I have sent some hours ago a mail to freebsd-questions
> which went out fine to the MX of my ISP (as I can see in
> /var/log/maillog) but does not show up in the list and not
> in the Archives. The Subject: was about sendmail and SMTP AUT
Hello,
I have sent some hours ago a mail to freebsd-questions
which went out fine to the MX of my ISP (as I can see in
/var/log/maillog) but does not show up in the list and not
in the Archives. The Subject: was about sendmail and SMTP AUTH.
I have changed the ISP today morning for outbound ma
Thanks !!!
Got it resolved after adding
mysql_socket="/usr/tmp/mysql.sock" to the rc.conf file
Removing the /etc/my.cnf file as the aetting were redundant with those used
in the compilation
deinstalling and reinstalling both the server and the client
Matthew Seaman-2 wrote:
>
> jaymax wrote:
Hey list,
I'm working on a shell script that basically removes the group and the
other permissions from certain files to harden my system. Right now,
the only files I'm doing this on is the GCC compiler collection. I'm
asking for suggestions on other files that these permissions can be
removed fro
On Thursday 07 January 2010 10:02:36 O. Hartmann wrote:
> On 01/07/10 01:41, Pieter de Goeje wrote:
> > On Wednesday 06 January 2010 14:14:28 O. Hartmann wrote:
> >> Dear Sirs,
> >> We use a software package for scientific imagery processing from USGS,
> >> ISIS3 (http://isis.astrogeology.usgs.gov/
On Thu, Jan 7, 2010 at 11:44 AM, Andreas Rudisch <"cyb."@gmx.net> wrote:
> On Sun, 3 Jan 2010 15:27:55 -0700 (MST)
> Warren Block wrote:
>
> > Finishing a complete new install of 8-stable on a Thinkpad T42. This
> > model came with the Intel PRO/wireless 2100.
> >
> > So far, it has almost but n
On Sun, 3 Jan 2010 15:27:55 -0700 (MST)
Warren Block wrote:
> Finishing a complete new install of 8-stable on a Thinkpad T42. This
> model came with the Intel PRO/wireless 2100.
>
> So far, it has almost but not quite been able to connect using WPA on
> FreeBSD.
Same here when trying to set
On 1/6/2010 5:07 PM, Programmer In Training wrote:
>
>
> After testing out the boot disk on my mom's laptop, I have determined
> there is an error somewhere with my computer. I don't know what it is or
> where to even begin to look to fix it, but my computer is toast.
>
BIOS:
Phoenix - AwardBIO
Matthew Seaman wrote:
> Steve Bertrand wrote:
>
>> Hmmm. This config does not work:
>>
>> ifconfig_re0="inet 208.70.104.210 netmask 255.255.255.192"
>> ifconfig_re0_alias0="inet 208.70.104.211 netmask 255.255.255.255"
>> ifconfig_re0_alias1="inet6 2607:f118::b6 prefixlen 64"
>> ifconfig_re0_alias2
I'm installing Apache22 on a new server and for once, I'd like to
install just the modules I need, instead of the default mess.
I've been googling for this answer, but can't seem to find it: Are any
apache modules *required*? Or can I just disable them all and then add
them in as I need them?
Matthew Seaman wrote:
> Steve Bertrand wrote:
>
>> Hmmm. This config does not work:
>>
>> ifconfig_re0="inet 208.70.104.210 netmask 255.255.255.192"
>> ifconfig_re0_alias0="inet 208.70.104.211 netmask 255.255.255.255"
>> ifconfig_re0_alias1="inet6 2607:f118::b6 prefixlen 64"
>> ifconfig_re0_alias2
Steve Bertrand wrote:
Hmmm. This config does not work:
ifconfig_re0="inet 208.70.104.210 netmask 255.255.255.192"
ifconfig_re0_alias0="inet 208.70.104.211 netmask 255.255.255.255"
ifconfig_re0_alias1="inet6 2607:f118::b6 prefixlen 64"
ifconfig_re0_alias2="inet6 2607:f118::b7 prefixlen 64"
Yep
Greetings,
uname -a (64bit)
8.0-RELEASE-p1 FreeBSD 8.0-RELEASE-p1 #0: Sun Dec 6 11:23:52 PST 2009
I have a raidz setup with 4x 2TB drives, plus a UFS CF on the IDE
channel I use to boot off of. I have an 1TB ZFS (non-raid) drive in
an attached docking station that I use for nightly backups.
Matthew Seaman wrote:
> Steve Bertrand wrote:
> Funny. My IPv6 config works like a charm, on both 7.2-STABLE and
> 8.0-STABLE. Related config settings look like this:
>
> gif_interfaces="gif0"
> gifconfig_gif0="81.187.76.162 81.187.81.6"
>
> ipv6_ifconfig_gif0="2001:08b0:0151:0001::1/64"
> ipv
Steve Bertrand wrote:
Bogdan Webb wrote:
I'm having problems with the /etc/rc.conf setup of a ipv6 tunnel on my
FreeBSD 7.2-RELEASE-p6
It`s a particular issue on the ipv6_defaultrouter config, it jost does not
work...
Upon network and routing restart ipv6 is enabled the gif interface are given
i
Bogdan Webb wrote:
> I'm having problems with the /etc/rc.conf setup of a ipv6 tunnel on my
> FreeBSD 7.2-RELEASE-p6
> It`s a particular issue on the ipv6_defaultrouter config, it jost does not
> work...
> Upon network and routing restart ipv6 is enabled the gif interface are given
> ip's and every
On 01/07/10 01:41, Pieter de Goeje wrote:
On Wednesday 06 January 2010 14:14:28 O. Hartmann wrote:
Dear Sirs,
We use a software package for scientific imagery processing from USGS,
ISIS3 (http://isis.astrogeology.usgs.gov/). The most recent version is
3.1.21 and since this version, the software
I'm having problems with the /etc/rc.conf setup of a ipv6 tunnel on my
FreeBSD 7.2-RELEASE-p6
It`s a particular issue on the ipv6_defaultrouter config, it jost does not
work...
Upon network and routing restart ipv6 is enabled the gif interface are given
ip's and everything but the defaultrouter doe
36 matches
Mail list logo