Re: OT: Why does my Google hosted email gets caught in others spam filters?

2010-06-24 Thread Joseph Sinclair
Only thing I can think of is that you're not using the Google outbound SMTP gateway? As long as you're using your GAFYD account on the Google SMTP gateway, then Google is doing the SPF and DomainKey stuff, so there's no good reason for it to end up in SPAM filters. That said I've noticed certai

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread Bryan O'Neal
You could have also just done chkconfig ftp off On Thu, Jun 24, 2010 at 8:20 PM, keith smith wrote: > > I think I understand run levels. Why then was FTP started under > /etc/xinetd.d/ and to keep it from running I had the remove the startup > script from /etc/xinetd.d/ ? > > Wouldn't that make

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread keith smith
I think I understand run levels. Why then was FTP started under /etc/xinetd.d/ and to keep it from running I had the remove the startup script from /etc/xinetd.d/ ? Wouldn't that make any service launched by /etc/xinetd.d/ as standalone? So if I wanted I could start FTP by associating it with

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread Bryan O'Neal
Run levels indicate how the service should auto start. If you want it to always listen no mater how you boot the machine (into which run level) the you add it to all run levels. If you want to think of it like this lower run levels are like safe mode in windows. On Thu, Jun 24, 2010 at 7:59 PM, ke

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread keith smith
I thought there was two way to launch a service or process. 1) init.d associated with a run level or 2) s service that is always listening. If I am wrong please point that out to me. Thanks! Keith Smith --- On Thu, 6/24/10, Bryan O'Neal wrote: From: Bryan O'Neal

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread Bryan O'Neal
I am afraid I don't understand? Do you mean you have a service script but you want to be able to use the service command? On Thu, Jun 24, 2010 at 7:16 PM, keith smith wrote: > > If I use chkconfig to register a service then that service is associated > with a run level. What if I do not want th

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread keith smith
If I use chkconfig to register a service then that service is associated with a run level.  What if I do not want the service to be associated with a run level, but to be stand alone? Keith Smith --- On Thu, 6/24/10, Bryan O'Neal wrote: From: Bryan O'Neal Subject:

OT: Why does my Google hosted email gets caught in others spam filters?

2010-06-24 Thread Bryan O'Neal
So I have been using my @TheONealAndAssociates.com email address for years now. It is hosted by Google Apps and has been since the name was pressed. However more and more my email is ending up in peoples spam filters. How can I solve this? If I ran my own email server I could go down the list of s

Re: Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread Bryan O'Neal
use chkconfig to register /etc/init.d as services chkconfig --list chkconfig --level [run levels] [service] [on/off] ie. chkconfig --level 345 httpd on On Thu, Jun 24, 2010 at 6:45 PM, keith smith wrote: > > > More questions so I can make sure I understand what I did and why. Thank > you for y

Add/Remove/Start/Stop services on CentOS

2010-06-24 Thread keith smith
More questions so I can make sure I understand what I did and why.  Thank you for your help! All services are standalone processes, that are started via start up code found in /etc/xinetd.d/ To add a standalone process put it's start up code in /etc/xinetd.d/ To remove a proce

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread keith smith
Okay that was it.  Thanks!  Man that is so simple now that I know what I did.  Yikes!! I'll have more questions about the process in a few minutes. Thank you to everyone who replied!! Keith Smith --- On Thu, 6/24/10, Tom Jones wrote: From: Tom Jones Subject: Re:

Re: how to reference bash variables inside perl script inside bash script?

2010-06-24 Thread Brian Cluff
On 06/23/2010 09:44 PM, Steven A. DuChene wrote: The core part of the script I am having a problem with looks like: #!/bin/bash OPASS=$2 PASS=`perl -e 'print("userPassword: {CRYPT}".crypt("$OPASS","frat-salt")."\n");'` Try changing it to this: PASS=`perl -e 'print("userPassword: {CRYPT}".

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Tom Jones
Did you restart xinetd after moving the files? keith smith wrote: >Thanks for your reply. > >/usr/sbin/lsof -i :21 > >returns > > xinetd 2417 root    6u  IPv4 6699   TCP *:ftp (LISTEN) > >I have looked all around and have search Google for hours. > >In these two files there was

Job: Customer Engineer needed

2010-06-24 Thread Alan Dayley
We have an opening for a Customer Engineer. This person is the interface between first line tech support and the engineering department to solve the hard questions that come up. Please get details and apply through the following link: http://hiring.accolo.com/job.htm?id=250672523 Got questions?

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread keith smith
Thanks for your reply. /usr/sbin/lsof -i :21 returns  xinetd 2417 root    6u  IPv4 6699   TCP *:ftp (LISTEN) I have looked all around and have search Google for hours. In these two files there was a reference to pure-ftpd   /etc/xinetd.d/ftp /etc/xinetd.d/ftp-tls  So I mov

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Eric Cope
If you FTP to the server, does it reply with the server daemon name? Eric On Thu, Jun 24, 2010 at 11:51 AM, Dan Dubovik wrote: > rpm -qa | grep ftp ? > > also chkconfig --list > > at the bottom of the list will be the xinetd based services. > > Find the FTP daemon in there, and: > chkconfig [dae

Re: Determin which FTP server is running and turn off non secure FTP

2010-06-24 Thread Dan Dubovik
rpm -qa | grep ftp ? also chkconfig --list at the bottom of the list will be the xinetd based services. Find the FTP daemon in there, and: chkconfig [daemon_name] off On Wed, Jun 23, 2010 at 10:56 PM, walter tocalini wrote: > Keith let asume that you use yum to install pure-ftp and you use--

Re: how to reference bash variables inside perl script inside bash script?

2010-06-24 Thread Steven A. DuChene
I think that did the trick Eric. Thanks! -Original Message- >From: Eric Shubert >Sent: Jun 24, 2010 11:02 AM >To: plug-discuss@lists.plug.phoenix.az.us >Subject: Re: how to reference bash variables inside perl script inside bash >script? > > >Stuff inside of single quotes won't have

Re: MySQL reporting question

2010-06-24 Thread Joseph Sinclair
der.hans wrote: > Am 22. Jun, 2010 schwätzte Joseph Sinclair so: > >> As I understand your structure and requirements (it's a bit fuzzy, >> especially the t2.varchar2 == t2.varchar2) >> Create two *materialized* views and refresh both views (1 then 2) >> every reporting period (daily?). > > When

Re: how to reference bash variables inside perl script inside bash script?

2010-06-24 Thread Eric Shubert
Steven A. DuChene wrote: I am attempting to write what I thought would be a simple wrapper script around ldapmodify that would allow me to easily reset a user's password. Inside my bash based wrapper script is a single line of perl that encrypts the password I input and returns it as a specially

Re: how to reference bash variables inside perl script inside bash script?

2010-06-24 Thread Jason Holtzapple
On 06/23/2010 09:44 PM, Steven A. DuChene wrote: > My problem is I want to be able to pick up $2 from the command line invocation > of my bash script for the desired password and then pass that into the one > line > perl piece. But with all of the single quotes, double quotes, back ticks and > et