[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] Thank you very much Webmost
- Subject: [cobalt-users] Thank you very much Webmost
- From: "Frank Volpe" <frank@xxxxxxxxxxxxxxx>
- Date: Sun Sep 24 16:37:45 2000
Webmost,
Your reply has been very helpful, Thank you aging.
Frank Volpe
----- Original Message -----
From: <cobalt-users-admin@xxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Sunday, September 24, 2000 5:38 PM
Subject: cobalt-users digest, Vol 1 #1396 - 20 msgs
>
> Send cobalt-users mailing list submissions to
> cobalt-users@xxxxxxxxxxxxxxx
>
> To subscribe or unsubscribe via the web, visit
> http://list.cobalt.com/mailman/listinfo/cobalt-users
> or, via email, send a message with subject or body 'help' to
> cobalt-users-request@xxxxxxxxxxxxxxx
> You can reach the person managing the list at
> cobalt-users-admin@xxxxxxxxxxxxxxx
>
> When replying, please edit your Subject line so it is more specific than
> "Re: Contents of cobalt-users digest..."
>
>
> Today's Topics:
>
> 1. Getting ServerName or domain name in script (Cody Watkins)
> 2. Re: Permissions ! (WebMost)
> 3. Mailing List Not working for domain (Cobalt)
> 4. RE: Mailing List Not working for domain (Jimmy Gross)
> 5. SubDomain questions. (Jerald C Jones)
> 6. RE: Mailing List Not working for domain (Cobalt)
> 7. Re: Mailing List Not working for domain (Mark Baker - Cobalt Lists)
> 8. RE: Mailing List Not working for domain (Cobalt)
> 9. Re: Mailing List Not working for domain (Mark Baker - Cobalt Lists)
> 10. RE: Mailing List Not working for domain (Jimmy Gross)
> 11. looking at site b4 dns (Jim Carey)
> 12. RE: Mailing List Not working for domain (Cobalt)
> 13. Re: FrontPage mail forms (Edward York)
> 14. RE: Getting ServerName or domain name in script (Sales - Way to the
Web)
> 15. Re: Mailing List Not working for domain (Tim M. Muldoon)
> 16. RE: Mailing List Not working for domain (Jimmy Gross)
> 17. RE: Mailing List Not working for domain (Jimmy Gross)
> 18. RE: Mailing List Not working for domain (Cobalt)
> 19. RE: Mailing List Not working for domain (Jimmy Gross)
> 20. RE: SubDomain questions. (Stephen Mc Carron)
>
> --__--__--
>
> Message: 1
> Date: Sun, 24 Sep 2000 12:29:29 -0700
> To: cobalt-users@xxxxxxxxxxxxxxx
> From: Cody Watkins <codyw@xxxxxxxxxxxxxxxxx>
> Subject: [cobalt-users] Getting ServerName or domain name in script
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Hello all!
>
> Have a question. I have a PERL script that needs to be able to find out
> what domain name it is being used under. I have setup a script alias
> location of cgi-sys for all clients on one server. Ie. Every domain on the
> server has the location /cgi-sys/ and it contains exactly the same
> things. One script in there needs to know the domain name for which it is
> being used under. And since this script is being used for multiple domains
> all at once, is there a way it can find out which domain it is being used
> under. It can probably get it from the HTTP Header, but how do I extract
> it, and how do I isolate just the domain name?
>
> Thanks!
> Cody Watkins
>
>
> --__--__--
>
> Message: 2
> From: "WebMost" <dbugger@xxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: Re: [cobalt-users] Permissions !
> Date: Sun, 24 Sep 2000 15:30:26 -0400
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Ahoy
>
> > So my question is how can I setup the permission on my CGI bin.
>
> Here is the skinny on permissions & ownerships...............
>
> UNIX operating systems were developed at a time when a single computer
> filled a large climate-controlled building, required several technicians
to
> operate, and cost as much as a Hollywood epic. A prestigious university or
> an extremely large company might own just one. The only economical way to
> operate such a huge device was to share it among many users. Payroll,
Sales,
> Research, etc. all used the same machine. In each department were several
> terminals, basically a keyboard and a monitor. These were the clients. All
> fed back to the same server, which took their input served out the
results.
>
> Now, here's the problem: The company doesn't want everyone in sales to
> access payroll files. Furthermore, researcher Joe doesn't want researcher
> Bill to mess with Joe's latest project. Universities, especially, are
hosts
> to bright young vandals with time on their hands, who would gladly destroy
> thousands of hours of someone's work just for fun.
>
> Hence, the developers of the operating system included OWNERSHIP and
> PERMISSION among their system tools.
>
> Ownership falls into three categories:
> Owners -- Joe, who wrote his files, owns them.
> Groups -- Bill, Joe's cohort, is a Research group member.
> Users -- Each person at a terminal in any department is a user.
>
> Permission falls into four categories:
> None -- No access to the file
> Read -- Permission to read the file
> Write -- Permission to edit the file
> Execute -- Permission to run the file, if it is a program
>
> Now, let's say that Human Resources asks Programming to develop a program
> named ira.pl which calculates the values of employee's IRAs. This program
> accesses a data file named invest.dat which belongs to Payroll.
Programming
> owns ira.pl, with permission to read, write, and execute. Payroll owns
> invest.dat, and doesn't want anyone to read it. So a virtual group is
> created, with invest.dat and ira.pl as its members. This group has
> permission to read invest.dat. The Human Resources group has permission to
> execute ira.pl, but neither to read nor edit it. The users in Sales don't
> have any permissions at all.
>
> This model obviously applies well to the internet, where many users and
> groups use the same files in different ways. You don't want the general
> public to edit your files, but you do want them to read them. They must be
> able to execute some of those files. It's the same problem. This is why
> nearly all servers use UNIX or it's offshoot Linux. And it is also why
> criminals seeking to steal 400,000 credit card numbers first look for an
NT
> server where someone was foolish enough to place sensitive data.
>
> Permissions are expressed as three digits. The first digit applies to the
> owner, the second to the group, the third to the user.
> Each digit is the sum of up to four numbers. 0 means no permission,
1 ]means
> permission to execute, 2 means permission to edit, 4 means permission to
> read. All sums are unique. 5 can only be the sum of read and execute. 4
can
> only be read. 3 can only mean execute and edit. Thus, 764 means that the
> owners has all three permissions, the group has read and edit permission,
> while the user has read permission only.
>
> Your CGI script should typically have permissions set at 755, so that
group
> and user may execute or read, while you may do whatever you require to the
> file. Pages will typically have 644.
>
> To set permissions, telnet to the server, navigate to the cgi-bin, then
> type:
> "chmod 755 myfile.pl".
>
> To change owners, telnet in, navigate, then type:
> "chown ownername:groupname"
>
> Do not be confused; you, as a user on the ISP's system, have a username.
> But, as regards your own files, you are the owner.
>
> ** IMPORTANT **
> Remember that the directory in which the file resides must also have
execute
> permission! Some systems are set to run CGI only out of the cgi-bin. Some
> are set to run it anywhere.
>
>
>
>
>
>
> --__--__--
>
> Message: 3
> From: "Cobalt" <cobalt@xxxxxxxxxxxx>
> To: "Cobalt Users Group" <cobalt-users@xxxxxxxxxxxxxxx>
> Date: Sun, 24 Sep 2000 12:31:40 -0700
> charset="iso-8859-1"
> Subject: [cobalt-users] Mailing List Not working for domain
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Hello,
>
> I would check the archives but it seems that it is down...with that said,
> here is my question.
>
> I have a domain that the mailing list is not work. It returns an
> undeliverable message that states the address is not valid. I have
mailing
> lists working correctly for several other domains. I have tried renaming,
> deleting and re-entering, sending to @www.domain.com...all with no luck.
> Other email accounts work correctly on the domain. Everything seems to be
> setup correctly...just the list is having trouble.
>
> Can someone provide some assistance as to where I should be looking for
the
> problem?
>
> Thanks,
> Scott
>
>
> --__--__--
>
> Message: 4
> Reply-To: <jimmy@xxxxxxxxxxxxxxx>
> From: "Jimmy Gross" <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 12:51:14 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Please post the error message in full.
>
> jimmy
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Cobalt
> Sent: Sunday, September 24, 2000 12:32 PM
> To: Cobalt Users Group
> Subject: [cobalt-users] Mailing List Not working for domain
>
>
> Hello,
>
> I would check the archives but it seems that it is down...with that said,
> here is my question.
>
> I have a domain that the mailing list is not work. It returns an
> undeliverable message that states the address is not valid. I have
mailing
> lists working correctly for several other domains. I have tried renaming,
> deleting and re-entering, sending to @www.domain.com...all with no luck.
> Other email accounts work correctly on the domain. Everything seems to be
> setup correctly...just the list is having trouble.
>
> Can someone provide some assistance as to where I should be looking for
the
> problem?
>
> Thanks,
> Scott
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 5
> From: Jerald C Jones <jcjones@xxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Date: Sun, 24 Sep 2000 13:51:17 -0600
> charset="iso-8859-1"
> Subject: [cobalt-users] SubDomain questions.
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Hello,
> I have a domain (http://www.wagoneer.net) which I am setting up
sub-domains for and I have the following question:
>
> I have set up a sub domain (http://roadwarrior.wagoneer.net) and I cannot
seem to get my DNS server to recognize
> www.roadwarrior.wagoneer.net or http://www.roadwarrior.wagoneer.net it
will only work as http://roadwarrior.wagoneer.net or
> roadwarrior.wagoneer.net. Does anyone know how to get the DNS server to
recognize the www in front of the subdomain name?
>
> Thanks,
> JC Jones :)
>
>
> --__--__--
>
> Message: 6
> From: "Cobalt" <cobalt@xxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 12:53:11 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> > Please post the error message in full.
> >
> > jimmy
> >
> The original message was received at Sun, 24 Sep 2000 12:15:46 -0700 (PDT)
> from ip185.seattle34.wa.pub-ip.psi.net [38.28.178.185]
>
> ----- The following addresses had permanent fatal errors -----
> <teams@xxxxxxxxxx>
>
> ----- Transcript of session follows -----
> ... while talking to www.fhoops.com.:
> >>> RCPT To:<teams@xxxxxxxxxx>
> <<< 550 <teams@xxxxxxxxxx>... User unknown
> 550 <teams@xxxxxxxxxx>... User unknown
>
>
> --__--__--
>
> Message: 7
> Reply-To: "Mark Baker - Cobalt Lists" <cobalt@xxxxxxxxxxxxxxxxxx>
> From: "Mark Baker - Cobalt Lists" <cobalt@xxxxxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: Re: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 21:03:57 +0100
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> I think its because you have a catch all account setup (@www.domain.com)
The
> mail list doesn't like that!
>
> Try removing that and try the list again.
>
> Regards,
>
> Mark Baker
> Dark Marketing Ltd
> http://www.yoursitehere.co.uk
>
> Reply e-mail: mark@xxxxxxxxxxxxxxxxxx
> ----- Original Message -----
> From: Jimmy Gross <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Sent: Sunday, September 24, 2000 8:51 PM
> Subject: RE: [cobalt-users] Mailing List Not working for domain
>
>
> > Please post the error message in full.
> >
> > jimmy
> >
> > -----Original Message-----
> > From: cobalt-users-admin@xxxxxxxxxxxxxxx
> > [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Cobalt
> > Sent: Sunday, September 24, 2000 12:32 PM
> > To: Cobalt Users Group
> > Subject: [cobalt-users] Mailing List Not working for domain
> >
> >
> > Hello,
> >
> > I would check the archives but it seems that it is down...with that
said,
> > here is my question.
> >
> > I have a domain that the mailing list is not work. It returns an
> > undeliverable message that states the address is not valid. I have
> mailing
> > lists working correctly for several other domains. I have tried
renaming,
> > deleting and re-entering, sending to @www.domain.com...all with no luck.
> > Other email accounts work correctly on the domain. Everything seems to
be
> > setup correctly...just the list is having trouble.
> >
> > Can someone provide some assistance as to where I should be looking for
> the
> > problem?
> >
> > Thanks,
> > Scott
> >
> >
> > _______________________________________________
> > cobalt-users mailing list
> > cobalt-users@xxxxxxxxxxxxxxx
> > To Subscribe or Unsubscribe, please go to:
> > http://list.cobalt.com/mailman/listinfo/cobalt-users
> >
> >
> > _______________________________________________
> > cobalt-users mailing list
> > cobalt-users@xxxxxxxxxxxxxxx
> > To Subscribe or Unsubscribe, please go to:
> > http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 8
> From: "Cobalt" <cobalt@xxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:04:13 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> > I think its because you have a catch all account setup
> > (@www.domain.com) The
> > mail list doesn't like that!
> >
> > Try removing that and try the list again.
>
> No catch-all setup for this domain.
>
>
> --__--__--
>
> Message: 9
> Reply-To: "Mark Baker - Cobalt Lists" <cobalt@xxxxxxxxxxxxxxxxxx>
> From: "Mark Baker - Cobalt Lists" <cobalt@xxxxxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: Re: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 21:27:34 +0100
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Oh sorry.. then better wait for others to help :o)
>
> Regards,
>
> Mark Baker
> Dark Marketing Ltd
> http://www.yoursitehere.co.uk
>
> Reply e-mail: mark@xxxxxxxxxxxxxxxxxx
> ----- Original Message -----
> From: Cobalt <cobalt@xxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Sent: Sunday, September 24, 2000 9:04 PM
> Subject: RE: [cobalt-users] Mailing List Not working for domain
>
>
> > > I think its because you have a catch all account setup
> > > (@www.domain.com) The
> > > mail list doesn't like that!
> > >
> > > Try removing that and try the list again.
> >
> > No catch-all setup for this domain.
> >
> >
> > _______________________________________________
> > cobalt-users mailing list
> > cobalt-users@xxxxxxxxxxxxxxx
> > To Subscribe or Unsubscribe, please go to:
> > http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 10
> Reply-To: <jimmy@xxxxxxxxxxxxxxx>
> From: "Jimmy Gross" <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:23:56 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Do you have "Allow Unsubscribed Posting to List" checked under the mailing
> list settings?
>
> jimmy
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Cobalt
> Sent: Sunday, September 24, 2000 1:04 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: RE: [cobalt-users] Mailing List Not working for domain
>
>
> > I think its because you have a catch all account setup
> > (@www.domain.com) The
> > mail list doesn't like that!
> >
> > Try removing that and try the list again.
>
> No catch-all setup for this domain.
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 11
> Reply-To: <ozbcoz@xxxxxxxxxxxxxxxx>
> From: "Jim Carey" <ozbcoz@xxxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Date: Mon, 25 Sep 2000 07:27:06 +1000
> charset="iso-8859-1"
> Subject: [cobalt-users] looking at site b4 dns
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Could someone just confirm this for me please:
>
> If I want to look at a site that is going to be name based, before it is
> available.
>
> -set up test.mydomain.com in dns pointing to ip that final domain will
share
> -setup test.mydomain.com as a site on the shared ip
> -load up site in test.mydomain.com
> -test it out
> -rename test.mydomain.com to finalname.com using GUI site management panel
> -setup dns for finaldomain.com pointing to shared ip
> -redelegate finalname.com to my machine
> -remove dns entries for test.mydomain.com
> -wait for domain propagation
>
> Jane's yer Aunty
>
> does all that look right ?
>
> Jim Carey
>
>
> --__--__--
>
> Message: 12
> From: "Cobalt" <cobalt@xxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:31:34 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> > Do you have "Allow Unsubscribed Posting to List" checked under the
mailing
> > list settings?
> >
> > jimmy
> >
>
> Yes I do
>
>
> --__--__--
>
> Message: 13
> Reply-To: "Edward York" <evy@xxxxxxxxxxxxxx>
> From: "Edward York" <evy@xxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: Re: [cobalt-users] FrontPage mail forms
> Date: Sun, 24 Sep 2000 13:41:35 -0700
> Organization: 724 Hosting
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Jason,
> Thanks for the help.
> I have some more info.
>
> The error in the log is this.
> "malformed header from script. Bad header= info@xxxxxxxxxxxx$
>
> Do you have any ideas on what this error is saying?
>
> Now about these other questions.
>
> > Can the user receive email from outside the server, or is this problem
> > limited to the FrontPage form?
> YES! The client can retrieve other mail. It is just the form that wont
work.
>
> > If you set the email address to something off the server, what happens?
> It works with no problem on other mail addresses off the server.
>
> > Also, you may need to add the following to your
> > /usr/local/frontpage/www.abc.com:80.cnf
> >
> > SendmailCommand: /usr/local/sbin/sendmail %r
> >
> > Hope some of that helps. If not, answer the above questions and
hopefully
> > we can get the bottom of it.
> >
> > --
> > Jason Sikorski
> > jsikorski@xxxxxxxxxxxx
> >
> >
> >
> > ----- Original Message -----
> > From: "Edward York" <evy@xxxxxxxxxxxxxx>
> > To: <cobalt-users@xxxxxxxxxxxxxxx>
> > Sent: Saturday, September 23, 2000 10:45 PM
> > Subject: [cobalt-users] FrontPage mail forms
> >
> >
> > > Hello,
> > > I am hoping someone can help me on an answer for my problems on the
> > > Frontpage forms to send mail on my RAQ3.
> > >
> > > I have just created a new site today. (lets call it ABC.com for the
sake
> > of
> > > this example), verified "relayed is allowed" for the domain, but get
an
> > > error as follows when submitting the form.
> > > "The server encountered an internal error or misconfiguration and was
> > unable
> > > to complete your request. "
> > >
> > > This problem is domain specific.
> > > I can change the form "mail to" address to a different mail domain
which
> > is
> > > on the same server and the form works just fine. I have also tried
> > creating
> > > a test form in another web site on the server again using the domain
> > ABC.com
> > > and it does not work there either. MX records in DNS are also valid.
> > >
> > > I have pretty much ruled out a problem with the virtual domain
> > configuration
> > > for ABC.com because it did not work in the other known good site
either.
> > > I am now questioning the permissions for e-mail for the domain on the
> > server
> > > now.
> > > I have verified relay is allowed for the domain. What else could it
be?
> > >
> > > Any ideas would be appreciated.
> > >
> > > Regards,
> > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > > 724 Hosting
> > > Quality NT Web Hosting
> > > Fast - Reliable - Affordable.
> > > Edward York - CTO
> > > Mail: Ed@xxxxxxxxxxxxxx
> > > http://www.724hosting.com
> > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > >
> > >
> > > _______________________________________________
> > > cobalt-users mailing list
> > > cobalt-users@xxxxxxxxxxxxxxx
> > > To Subscribe or Unsubscribe, please go to:
> > > http://list.cobalt.com/mailman/listinfo/cobalt-users
> > >
> >
> >
> > _______________________________________________
> > cobalt-users mailing list
> > cobalt-users@xxxxxxxxxxxxxxx
> > To Subscribe or Unsubscribe, please go to:
> > http://list.cobalt.com/mailman/listinfo/cobalt-users
> >
>
>
> --__--__--
>
> Message: 14
> From: Sales - Way to the Web <sales@xxxxxxxxxxxxxxx>
> To: "'cobalt-users@xxxxxxxxxxxxxxx'" <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Getting ServerName or domain name in script
> Date: Sun, 24 Sep 2000 21:44:37 +0100
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Hello Cody,
>
> > And since this script is being used for multiple domains
> > all at once, is there a way it can find out which domain it
> > is being used
> > under. It can probably get it from the HTTP Header, but how
> > do I extract
> > it, and how do I isolate just the domain name?
>
> To find out what server you are running on can be quite tricky as not all
> servers are equal when it comes to the Environment Variables that they
> return. However, on the RaQ3 the variables are quite complete and you can
> use the (reasonably) standard HTTP_HOST environment variable like this:
>
> #!/usr/bin/perl
> # Isolate this server
> $this_server = %ENV{HTTP_HOST};
> # Display it in the users browser to prove that we have it (you don't need
> this next bit)
> print "content-type: text/html\n\n";
> print $this_server;
> exit;
>
> The variable $this_server will now have the name of the host as defined in
> that virtual hosts Apache setting for ServerName. So, for our domain
> $this_server would be www.waytotheweb.com.
>
> Out of interest, to find out what is in all of the environment variables
is
> easy, like this:
>
> #!/usr/bin/perl
> print "content-type: text/html\n\n";
> print "<table border=1>\n";
> for $key (sort keys %ENV) {
> print "<tr><td align=right>$key<td>$ENV{$key}</tr>\n";
> }
> print "</table>";
> exit;
>
> Regards,
> Jonathan Michaelson
>
> Way to the Web Ltd
> Commercial CGI Scripting, Web Hosting
> http://www.waytotheweb.com
>
>
> --__--__--
>
> Message: 15
> Reply-To: "Tim M. Muldoon" <muldoon@xxxxxxxxxxx>
> From: "Tim M. Muldoon" <muldoon@xxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: Re: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 16:46:13 -0400
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> > I think its because you have a catch all account setup (@www.domain.com)
>
> The mail list doesn't like that!
>
> As a side note to the above, I had a mailing list on a RaQ2 using
> @domain.com which caused it to fail (relatively) by grabbing
> listname@xxxxxxxxxx before the maillots.
>
> When I changed the catch-all to @www.domain.com it passed the
> listname@domain along correctly and the other user name on the site still
> works.
>
> Tim
> muldoon@xxxxxxxxxxx
>
>
> --__--__--
>
> Message: 16
> Reply-To: <jimmy@xxxxxxxxxxxxxxx>
> From: "Jimmy Gross" <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:46:41 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> What mail client are you using? Outlook 97/98/2000, Outlook Express,
> Netscape?
>
> jimmy
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Cobalt
> Sent: Sunday, September 24, 2000 1:32 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: RE: [cobalt-users] Mailing List Not working for domain
>
>
> > Do you have "Allow Unsubscribed Posting to List" checked under the
mailing
> > list settings?
> >
> > jimmy
> >
>
> Yes I do
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 17
> Reply-To: <jimmy@xxxxxxxxxxxxxxx>
> From: "Jimmy Gross" <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:52:07 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> @domain.com will catch all mail to the domain whereas @host.domain.com
will
> catch only email that is not sent to an authorized user.
>
> jimmy
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Tim M. Muldoon
> Sent: Sunday, September 24, 2000 1:46 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: Re: [cobalt-users] Mailing List Not working for domain
>
>
> > I think its because you have a catch all account setup (@www.domain.com)
>
> The mail list doesn't like that!
>
> As a side note to the above, I had a mailing list on a RaQ2 using
> @domain.com which caused it to fail (relatively) by grabbing
> listname@xxxxxxxxxx before the maillots.
>
> When I changed the catch-all to @www.domain.com it passed the
> listname@domain along correctly and the other user name on the site still
> works.
>
> Tim
> muldoon@xxxxxxxxxxx
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 18
> From: "Cobalt" <cobalt@xxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 13:53:08 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> > What mail client are you using? Outlook 97/98/2000, Outlook Express,
> > Netscape?
> >
> > jimmy
>
> Outlook 2k. I'm not sure where you are going with this one, but I have
not
> had any problems with other mailing lists I have setup with other domains.
>
> Thanks,
> Scott
>
>
> --__--__--
>
> Message: 19
> Reply-To: <jimmy@xxxxxxxxxxxxxxx>
> From: "Jimmy Gross" <jimmy@xxxxxxxxxxxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] Mailing List Not working for domain
> Date: Sun, 24 Sep 2000 14:09:28 -0700
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> If you were using Outlook Express I would have said that was probably your
> problem since it is a known problem with Outlook Express but there are not
> any problems with Outlook 2000.
>
> jimmy
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Cobalt
> Sent: Sunday, September 24, 2000 1:53 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: RE: [cobalt-users] Mailing List Not working for domain
>
>
> > What mail client are you using? Outlook 97/98/2000, Outlook Express,
> > Netscape?
> >
> > jimmy
>
> Outlook 2k. I'm not sure where you are going with this one, but I have
not
> had any problems with other mailing lists I have setup with other domains.
>
> Thanks,
> Scott
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> --__--__--
>
> Message: 20
> Reply-To: <info@xxxxxxxxxxxxxxxxxxx>
> From: "Stephen Mc Carron" <newlyons@xxxxxx>
> To: <cobalt-users@xxxxxxxxxxxxxxx>
> Subject: RE: [cobalt-users] SubDomain questions.
> Date: Sun, 24 Sep 2000 22:25:49 +0100
> charset="iso-8859-1"
> Reply-To: cobalt-users@xxxxxxxxxxxxxxx
>
> Yes, add www.roadwarrior.... to the DNS and use www.roadwarrior as the
> hostname in the Add Site dialog :)
>
> HTH,
> Stephen
>
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Jerald C Jones
> Sent: 24 September 2000 20:51
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: [cobalt-users] SubDomain questions.
>
>
> Hello,
> I have a domain (http://www.wagoneer.net) which I am setting up
> sub-domains for and I have the following question:
>
> I have set up a sub domain (http://roadwarrior.wagoneer.net) and I cannot
> seem to get my DNS server to recognize
> www.roadwarrior.wagoneer.net or http://www.roadwarrior.wagoneer.net it
will
> only work as http://roadwarrior.wagoneer.net or
> roadwarrior.wagoneer.net. Does anyone know how to get the DNS server to
> recognize the www in front of the subdomain name?
>
> Thanks,
> JC Jones :)
>
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To Subscribe or Unsubscribe, please go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
>
>
>
> --__--__--
>
> _______________________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
>
> End of cobalt-users Digest
>