inn refuses messages that contain "Distribution:" in the header

2000-12-13 Thread Francis Gois
Hello everybody. Could somebody give me a hand with inn ? Here's the problem : I always get news refused, I.E. in my log (var/log/news/news), i always get the following : - - 437 Unwanted distribution "" Where is a distribution name, like "fido7" or "Global" or "hun" or "sfnet" ... Users

screen blanking

2000-12-13 Thread Allen Ahoffman
How do I stop the screen from blanking on non X systems so that when problem arise the last items are left on screen? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: screen blanking

2000-12-13 Thread Tamas TEVESZ
On Wed, 13 Dec 100, Allen Ahoffman wrote: > How do I stop the screen from blanking on non X systems so that when > problem arise the last items are left on screen? setterm(1) -- [-] ``And there are plenty of other innovative pieces of software such as Napster and ICQ.'' -- comment on ``Syst

Re: screen blanking

2000-12-13 Thread Vlad Harchev
On Wed, 13 Dec 100, Allen Ahoffman wrote: > How do I stop the screen from blanking on non X systems so that when > problem arise the last items are left on screen? If you mean plain linux console, see man setterm (no docs on semantics is there, so you'll have trial and error approach)

screen blanking tanks

2000-12-13 Thread Allen Ahoffman
Thanks to all who replied to this easy question. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

kinda off topic but

2000-12-13 Thread Allen Ahoffman
Hi: For those who understand tcp intercept on Cisco IOS 12 and up: Can I set up mroe than one access list for example: access-list 120 permit any 207.17.130.5 permit any 207.17.130.6 then set the mins and max's' valuese just for that list and then set up access-list 121 permit any 208.242.120.5

Locked accounts

2000-12-13 Thread Robert Brown
I routinely use passwd -l username to lock customers with overdue balances. Is there a way to list all accounts that are locked? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: Locked accounts

2000-12-13 Thread Andrei D. Caraman
On Wed, Dec 13, 2000 at 09:06:22AM -0500, Robert Brown wrote: > I routinely use passwd -l username to lock customers with overdue balances. Is > there a way to list all accounts that are locked? >From passwd(1): > -l This option is used to lock the specified account and it is available to

/var/cache/apt/archives/partial deleted

2000-12-13 Thread Adrian Nims
I deleted by mistake the file /var/cache/apt/archives/partial (rm -rf *). Does anybody know how this file should look like, in order to write another one in place of the delted one ? I cannot make any update, any install of new package using dselect without this file. Adrian Nims begin:

Re: /var/cache/apt/archives/partial deleted

2000-12-13 Thread Mark Janssen
On Wed, 13 Dec 2000, Adrian Nims wrote: >I deleted by mistake the file /var/cache/apt/archives/partial (rm -rf > *). Does anybody know how this file should look like, in order to write > another one in place of the delted one ? > I cannot make any update, any install of new package using

ipchains help

2000-12-13 Thread Minta Adrian
Hello everybody, I run a very small office network connected to the Internet by a Debian station. The Debian stores the mail and offer web access using squid as a proxy server (no masquerading). Inside my network I use private addresses 192.168.1.x . For the security reasons I want to bloc

Re: Locked accounts

2000-12-13 Thread Nathan Ridge
This is the way I do it, may not be the best but it works. All disabled accounts start with '!' in the encrypted password, so if you do a 'radius:/etc# cat shadow |grep :!' in your path of your shadow file it will show accounts that are disabled. Regards Nathan > From: Robert Brown <[EMAIL PROT

Re: inn refuses messages that contain "Distribution:" in theheader

2000-12-13 Thread Nathan Ridge
Have you checked your /var/lib/news/active file? make sure all the groups that you want are listed here, active file will turn away groups with 'unwanted' in the log if they are not listed here. If you need a copy of a good active file let me know. Regards Nathan > From: Francis Gois <[EMAIL PR

Re: ipchains help

2000-12-13 Thread cowboy
On Thu, 14 Dec 2000, Minta Adrian wrote: /sbin/ipchains -A input -s !192.168.1.0/24 -d 0/0 110 -j DENY that above should work, although isn't perfect. A default policy of reject, or deny (for in, out, and forward) then selectively opening holes would be better. Also, do not forget tcpwrappers.

Re: Locked accounts

2000-12-13 Thread Robert Davies
> This is the way I do it, may not be the best but it works. All disabled > accounts start with '!' in the encrypted password, so if you do a > 'radius:/etc# cat shadow |grep :!' in your path of your shadow file it will > show accounts that are disabled. egrep ':![^!]' /etc/shadow That's : fol