Why sendmail?

2006-09-01 Thread Martin Möller
Does anybody know, why the FreeBSD developers decided to use sendmail as
the standard MTA? Has there been a discussion about it and where could I
find information about it?

-- 
Martin Möller 
Using FreeBSD RELENG_6 for amd/64
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg - how to disable some video modes?

2006-01-10 Thread Martin Möller
* gandalf <[EMAIL PROTECTED]> [08-01-2006 10:29:18 +0100]:

> I can attach my xorg.conf file, if it helps.

Yes, that would help indeed.

-- 
Martin Moeller 

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


Re: Xorg - how to disable some video modes?

2006-01-09 Thread Martin Möller
* User Gandalf <[EMAIL PROTECTED]> [07-01-2006 23:21:08 +0100]:

> section. But I was not able to disable 1920x1440, 1600x1200 and 
> 1280x1024. What I do know is that I go to the control panel of xfce each 
> time and switch back to 1024x768 manually.

Take a look in which "SubSection" you make the changes... If you prefer
24 bit colour, set the mode like this, and don't forget to add the line
with "DefaultDepth", so X knows in which colour mode you want to start.

Section "Screen"
Identifier "Screen0"
DefaultDepth 24
Device "Card0"
Monitor"Monitor0"
SubSection "Display"
Viewport   0 0
Depth 24
Modes   "1024x768"
EndSubSection
EndSection

Regards,
Martin

-- 
Martin Moeller 

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


Re: openoffice-2 & openssl-beta-0.9.8a

2005-12-11 Thread Martin Möller
* Benjamin Thelen <[EMAIL PROTECTED]> [09-12-2005 21:15:25 +0100]:
> I'm a bit of a loss, no answer, no help by google, but I can't be the only
> one who faces this problem. How are you dealing with this? Do I overlook
> something?

Just force the thing to install and don't give another thought to that
openssl dependency:

pkg_add -f .tgz 

"f" like ....... force! ;-)

HTH,
Martin

-- 
Martin Möller  - ICQ # 82221572
GnuPG/PGP (DSA) Schlüssel-ID: 06746BEE - FAbdruck
9D2E 943F A669 50E4 A638 E42F 2699 2A76 0674 6BEE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: konsole and gnome-terminal problem

2002-07-17 Thread Martin Möller

On Wed, Jul 17, 2002 at 21:23:13 +, Nielsen wrote:
> 
> Initially I had no problems with the terminal programs, but now both
> 'konsole' and 'gnome-terminal' error on startup. I'm sure I changed
> something, but now konsole exits as soon as it shows up on the screen. Just
> flashes for a second. And gnome-terminal pops up an error dialog with the
> following:

I had the same problem until I deleted the '-nodaemon' switch in ttys.

ttyv8   "/usr/local/bin/kdm"xterm   on  secure

Now it works fine.

Martin

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Can't use gnutella through my firewall

2002-07-13 Thread Martin Möller

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi folks,
I successfully set up my firewall by using Marc Silver's example 
configuration. Everything's fine but I can't use Gnutella any more, so I 
added the line:

$fwcmd add pass tcp from any to any 6346 via tun0

(look at >>> for position)

But, as you can imagine, I doesn't work.
Any help appreciated!

Kind regards,
Martin

# Firewall rules
# Written by Marc Silver ([EMAIL PROTECTED])
# http://draenor.org/ipfw
# Freely distributable

# Define the firewall command (as in /etc/rc.firewall) for easy
# reference.  Helps to make it easier to read.
fwcmd="/sbin/ipfw"

# Force a flushing of the current rules before we reload.
$fwcmd -f flush

# Divert all packets through the tunnel interface.
$fwcmd add divert natd all from any to any via tun0

# Allow all data from my network card and localhost.  Make sure you
# change your network card (mine was fxp0) before you reboot.  :)
$fwcmd add allow ip from any to any via lo0
$fwcmd add allow ip from any to any via de0

# Allow all connections that I initiate.
$fwcmd add allow tcp from any to any out xmit tun0 setup

# Once connections are made, allow them to stay open.
$fwcmd add allow tcp from any to any via tun0 established

# Everyone on the internet is allowed to connect to the following
# services on the machine.  This example specifically allows connections
# to ssh and apache.
$fwcmd add allow tcp from any to any 80 setup
$fwcmd add allow tcp from any to any 22 setup
(>>>) $fwcmd add pass tcp from any to any 6346 via tun0

# This sends a RESET to all ident packets.
$fwcmd add reset log tcp from any to any 113 in recv tun0

# Allow outgoing DNS queries ONLY to the specified servers.
$fwcmd add allow udp from any to myDNS 53 out xmit tun0

# Allow them back in with the answers...  :)
$fwcmd add allow udp from myDNS 53 to any in recv tun0

# Allow ICMP (for ping and traceroute to work).  You may wish to
# disallow this, but I feel it suits my needs to keep them in.
$fwcmd add allow icmp from any to any

# Deny all the rest.
$fwcmd add deny log ip from any to any

- -- 
Martin Möller <[EMAIL PROTECTED]>
BSD/SI Deutschland
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.7 (FreeBSD)

iD4DBQE9MEF1t/yBbDyXkoURAhPtAJiHFqRwxn3VI4LUvCMuZqm5SGEoAJ9dRfVW
8Fp92UsnLIMUXQB2fYaXyg==
=jSTU
-END PGP SIGNATURE-

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message