[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] unsubscribe
- Subject: [cobalt-users] unsubscribe
- From: "Justin Johnson" <justinj@xxxxxxxxxxxxx>
- Date: Thu Oct 16 23:48:02 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
-----Original Message-----
From: cobalt-users-admin@xxxxxxxxxxxxxxx
[mailto:cobalt-users-admin@xxxxxxxxxxxxxxx] On Behalf Of
cobalt-users-request@xxxxxxxxxxxxxxx
Sent: 16 October 2003 23:41
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: cobalt-users digest, Vol 1 #6440 - 14 msgs
Send cobalt-users mailing list submissions to
cobalt-users@xxxxxxxxxxxxxxx
To subscribe or unsubscribe via the World Wide 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. catchall email raq4 (DanO)
2. Re: RedirectMatch question (Raq4) (PageKeeper Service)
3. {Scanned} RE: {Scanned} [cobalt-users] catchall email raq4 (Gavin
Nelmes-Crocker)
4. HELP MAIL - raq550 (alex)
5. Re: HELP MAIL - raq550 (Gerald Waugh)
6. raq 4 rebooting (Tom Cameron)
7. RE: catchall email raq4 (Brian Dowding)
8. Re: HELP MAIL - raq550 (alex)
9. Re: HELP MAIL - raq550 (alex)
10. Re: raq 4 rebooting (Gerald Waugh)
11. Re: HELP MAIL - raq550 (Gerald Waugh)
12. RE: raq 4 rebooting (Paul Shuttleworth)
13. RE: raq 4 rebooting (Tom Cameron)
14. Samba on Raq 550 (Jorge Samayoa)
--__--__--
Message: 1
Date: Thu, 16 Oct 2003 13:15:11 -0700
From: DanO <dano@xxxxxxxxxxxxxxxx>
Organization: Dan Olsen Web Technology
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: [cobalt-users] catchall email raq4
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
i've been banging my head against this all day ... how can i setup a
user account to receive all email for a domain?
ex:
the email addresses:
wildcard@xxxxxxxxxxx,
foo@xxxxxxxxxxx,
bar@xxxxxxxxxxx
all need to direct to:
catchall@xxxxxxxxxxx
many TIA,
DanO
--__--__--
Message: 2
From: "PageKeeper Service" <host@xxxxxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] RedirectMatch question (Raq4)
Date: Thu, 16 Oct 2003 14:30:34 -0500
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
----- Original Message -----
Subject: [cobalt-users] RedirectMatch question (Raq4)
> After searching a lot I give up.
> I changed all pages in a site from .html to .php
>
> I wrote an .htaccess in the root (all pages are in root directory):
> RedirectMatch permanent (.*)\.html$ http://www.mysite.nl$1.php
>
> It gives an internal server error.
>
> Should I change anything in httpd.conf?
>
> Thanks,
>
> Gerard
>
> httpd.conf:
> <VirtualHost 213.19.128.220>
> ServerName www. mysite.nl
> ServerAdmin admin
> DocumentRoot /home/sites/site7/web
> ServerAlias wrakkenmuseum.nl www. mysite.nl
> RewriteEngine on
> RewriteCond %{HTTP_HOST} !^213.19.128.220(:80)?$
> RewriteCond %{HTTP_HOST} !^www. mysite.nl(:80)?$
> RewriteRule ^/(.*) http://www. mysite.nl/$1 [L,R]
> RewriteOptions inherit
> AliasMatch ^/~([^/]+)(/(.*))? /home/sites/site7/users/$1/web/$3
> AddType application/x-httpd-php .php3
> AddType application/x-httpd-php .php4
> AddType application/x-httpd-php .php
> AddHandler cgi-wrapper .cgi
> AddHandler cgi-wrapper .pl
> </VirtualHost>
This seems to work on a fully patched raq4i.
The directive to to use in httpd.conf within the VirtualHost section of a
site.
<Directory /home/sites/site3/web>
AllowOverride None
Options Indexes FollowSymLinks Includes ExecCGI
Order allow,deny
Allow from all
</Directory>
This Example added to the below so a single ssl cert can be used and
.htaccess
NameVirtualHost 69.69.69.69
<VirtualHost 69.69.69.69>
ServerName yo.mamma.com
ServerAdmin site3
DocumentRoot /home/sites/site3/web
ServerAlias yo.mamma.com
<Directory /home/sites/site3/web>
AllowOverride None
Options Indexes FollowSymLinks Includes ExecCGI
Order allow,deny
Allow from all
</Directory>
RewriteEngine on
RewriteCond %{HTTP_HOST} !^69.69.69.69(:80)?$
RewriteCond %{HTTP_HOST} !^yo.mamma.com(:80)?$
RewriteRule ^/(.*) http://yo.mamma.com/$1 [L,R]
RewriteOptions inherit
AliasMatch ^/~([^/]+)(/(.*))? /home/sites/site3/users/$1/web/$3
# AddHandler chiliasp .asp
# AddHandler chiliasp .asa
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php
ScriptAlias /cgi-bin/ /home/sites/site3/web/cgi-bin/
AddHandler cgi-wrapper .cgi
AddHandler cgi-wrapper .pl
AddHandler server-parsed .shtml
AddType text/html .shtml
</VirtualHost>
then open and modify the access.conf to match the directive as in the
example below and add the directives
'AllowOverride AuthConfig Indexes Limit FileInfo' to it like below. this
alone may fix your problem if no ssl is used.
# be more restrictive within a site ..rather be less restrictive
<Directory /home/sites/*/>
Options -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride AuthConfig Indexes Limit FileInfo
</Directory>
PageKeeper Service
http://www.pagekeeperservice.com
--__--__--
Message: 3
From: "Gavin Nelmes-Crocker" <cobalt@xxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: {Scanned} RE: {Scanned} [cobalt-users] catchall email raq4
Date: Thu, 16 Oct 2003 21:42:15 +0100
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
> i've been banging my head against this all day ... how can i setup a
> user account to receive all email for a domain?
>
> ex:
>
> the email addresses:
> wildcard@xxxxxxxxxxx,
> foo@xxxxxxxxxxx,
> bar@xxxxxxxxxxx
>
> all need to direct to:
> catchall@xxxxxxxxxxx
An easy one when you know how but a bit of a cobalt specific
@www.example.com
put this in the alias and its done, then it will catch all mail for that
domain that doesn't match a user.
Happy RaQing
Gavin
--
This message has been scanned for viruses and
dangerous content by Web-Hoster Ltd, and is
believed to be clean.
--__--__--
Message: 4
From: "alex" <alex@xxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Thu, 16 Oct 2003 23:27:59 +0200
Subject: [cobalt-users] HELP MAIL - raq550
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
Mensajewhen my users try send and email to xxxx@xxxxxxxxxxx i have this
problem, somebody can help me please?
The original message was received at Thu, 16 Oct 2003 23:00:40 +0200
----- The following addresses had permanent fatal errors -----
<maspla@xxxxxxxxxxx>
(reason: 550 You don't have reverse dns name)
----- Transcript of session follows -----
... while talking to smtp.eresmas.com.:
>>> RCPT To:<maspla@xxxxxxxxxxx>
<<< 550 You don't have reverse dns name
550 5.1.1 <maspla@xxxxxxxxxxx>... User unknown
--__--__--
Message: 5
Date: Thu, 16 Oct 2003 17:40:39 -0400 (EDT)
From: Gerald Waugh <gwaugh@xxxxxxxxxxxxxxxxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] HELP MAIL - raq550
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
On Thu, 16 Oct 2003, alex wrote:
> Mensajewhen my users try send and email to xxxx@xxxxxxxxxxx i have this
> problem, somebody can help me please?
>
>
> The original message was received at Thu, 16 Oct 2003 23:00:40 +0200
>
> ----- The following addresses had permanent fatal errors -----
> <maspla@xxxxxxxxxxx>
> (reason: 550 You don't have reverse dns name)
>
> ----- Transcript of session follows -----
> ... while talking to smtp.eresmas.com.:
> >>> RCPT To:<maspla@xxxxxxxxxxx>
> <<< 550 You don't have reverse dns name
> 550 5.1.1 <maspla@xxxxxxxxxxx>... User unknown
Fix your reverse dns. gerhostbyaddr()
Talk to your ISP
dig -x 62.81.237.170
; <<>> DiG 8.3 <<>> -x
;; res options: init recurs defnam dnsrch
;; got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 4
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUERY SECTION:
;; 170.237.81.62.in-addr.arpa, type = ANY, class = IN
;; AUTHORITY SECTION:
237.81.62.in-addr.arpa. 3H IN SOA dns3.wanadoo.es.
hostmaster.eresmas.com. (
2000110302 ; serial
1D ; refresh
2H ; retry
4w2d ; expiry
2D ) ; minimum
;; Total query time: 391 msec
;; FROM: gail2 to SERVER: default -- 216.175.178.41
;; WHEN: Thu Oct 16 17:39:27 2003
;; MSG SIZE sent: 44 rcvd: 117
--
http://frontstreetnetworks.com | http://store.raqware.com
Front Street Networks LLC, 229 Front Street, Ste.#C
New Haven, CT 06513-3203 | phone: +1-203-785-0699
--__--__--
Message: 6
From: "Tom Cameron" <tomcameron@xxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Fri, 17 Oct 2003 07:43:47 +1000
Subject: [cobalt-users] raq 4 rebooting
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
About 2 weeks ago my raq 4 just started rebooting itself. It reboots about
once a day. Sometimes it stays up for three days but most often it reboots
daily. The reboots are always at about 4am-6am but not any exact time.
There are no entries in the logs that I can use to pinpoint the cause. No
sign of intrusion - I run chrootkit daily. Ive got all the latest patches
and Im pretty careful to keep them up-to-date.
No sign of runaway proceses, too much swap, high load etc. simply nothing I
can think of that would cause the problem.
does anybody have any idea what it could be or how I can solve this one?
Tom
--__--__--
Message: 7
From: "Brian Dowding" <brian@xxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: RE: [cobalt-users] catchall email raq4
Date: Thu, 16 Oct 2003 22:45:45 +0100
Organization: Equestrian Websites
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
> i've been banging my head against this all day ... how can i
> setup a user account to receive all email for a domain?
>
> ex:
>
> the email addresses:
> wildcard@xxxxxxxxxxx,
> foo@xxxxxxxxxxx,
> bar@xxxxxxxxxxx
>
> all need to direct to:
> catchall@xxxxxxxxxxx
>
>
> many TIA,
> DanO
Page 107 of the RaQ4 User Manual gives the full instructions!!
@<hostname.domainname>
i.e. @www.example.com
Best regards
Brian Dowding
[mailto:webmaster@xxxxxxxxxxxxxxxxxxxxxx]
--__--__--
Message: 8
From: "alex" <alex@xxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] HELP MAIL - raq550
Date: Thu, 16 Oct 2003 23:58:51 +0200
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
I don't use my dns server, I use the dns server from my domain provider
----- Original Message -----
From: "Gerald Waugh" <gwaugh@xxxxxxxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Thursday, October 16, 2003 11:40 PM
Subject: Re: [cobalt-users] HELP MAIL - raq550
> On Thu, 16 Oct 2003, alex wrote:
>
> > Mensajewhen my users try send and email to xxxx@xxxxxxxxxxx i have this
> > problem, somebody can help me please?
> >
> >
> > The original message was received at Thu, 16 Oct 2003 23:00:40 +0200
> >
> > ----- The following addresses had permanent fatal errors -----
> > <maspla@xxxxxxxxxxx>
> > (reason: 550 You don't have reverse dns name)
> >
> > ----- Transcript of session follows -----
> > ... while talking to smtp.eresmas.com.:
> > >>> RCPT To:<maspla@xxxxxxxxxxx>
> > <<< 550 You don't have reverse dns name
> > 550 5.1.1 <maspla@xxxxxxxxxxx>... User unknown
>
> Fix your reverse dns. gerhostbyaddr()
> Talk to your ISP
>
> dig -x 62.81.237.170
>
> ; <<>> DiG 8.3 <<>> -x
> ;; res options: init recurs defnam dnsrch
> ;; got answer:
> ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 4
> ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
> ;; QUERY SECTION:
> ;; 170.237.81.62.in-addr.arpa, type = ANY, class = IN
>
> ;; AUTHORITY SECTION:
> 237.81.62.in-addr.arpa. 3H IN SOA dns3.wanadoo.es.
> hostmaster.eresmas.com. (
> 2000110302 ; serial
> 1D ; refresh
> 2H ; retry
> 4w2d ; expiry
> 2D ) ; minimum
>
>
> ;; Total query time: 391 msec
> ;; FROM: gail2 to SERVER: default -- 216.175.178.41
> ;; WHEN: Thu Oct 16 17:39:27 2003
> ;; MSG SIZE sent: 44 rcvd: 117
>
> --
> http://frontstreetnetworks.com | http://store.raqware.com
> Front Street Networks LLC, 229 Front Street, Ste.#C
> New Haven, CT 06513-3203 | phone: +1-203-785-0699
>
> _____________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To subscribe/unsubscribe, or to SEARCH THE ARCHIVES, go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
--__--__--
Message: 9
From: "alex" <alex@xxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] HELP MAIL - raq550
Date: Fri, 17 Oct 2003 00:04:00 +0200
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
what file i need to modify
----- Original Message -----
From: "Gerald Waugh" <gwaugh@xxxxxxxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Thursday, October 16, 2003 11:40 PM
Subject: Re: [cobalt-users] HELP MAIL - raq550
> On Thu, 16 Oct 2003, alex wrote:
>
> > Mensajewhen my users try send and email to xxxx@xxxxxxxxxxx i have this
> > problem, somebody can help me please?
> >
> >
> > The original message was received at Thu, 16 Oct 2003 23:00:40 +0200
> >
> > ----- The following addresses had permanent fatal errors -----
> > <maspla@xxxxxxxxxxx>
> > (reason: 550 You don't have reverse dns name)
> >
> > ----- Transcript of session follows -----
> > ... while talking to smtp.eresmas.com.:
> > >>> RCPT To:<maspla@xxxxxxxxxxx>
> > <<< 550 You don't have reverse dns name
> > 550 5.1.1 <maspla@xxxxxxxxxxx>... User unknown
>
> Fix your reverse dns. gerhostbyaddr()
> Talk to your ISP
>
> dig -x 62.81.237.170
>
> ; <<>> DiG 8.3 <<>> -x
> ;; res options: init recurs defnam dnsrch
> ;; got answer:
> ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 4
> ;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
> ;; QUERY SECTION:
> ;; 170.237.81.62.in-addr.arpa, type = ANY, class = IN
>
> ;; AUTHORITY SECTION:
> 237.81.62.in-addr.arpa. 3H IN SOA dns3.wanadoo.es.
> hostmaster.eresmas.com. (
> 2000110302 ; serial
> 1D ; refresh
> 2H ; retry
> 4w2d ; expiry
> 2D ) ; minimum
>
>
> ;; Total query time: 391 msec
> ;; FROM: gail2 to SERVER: default -- 216.175.178.41
> ;; WHEN: Thu Oct 16 17:39:27 2003
> ;; MSG SIZE sent: 44 rcvd: 117
>
> --
> http://frontstreetnetworks.com | http://store.raqware.com
> Front Street Networks LLC, 229 Front Street, Ste.#C
> New Haven, CT 06513-3203 | phone: +1-203-785-0699
>
> _____________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To subscribe/unsubscribe, or to SEARCH THE ARCHIVES, go to:
> http://list.cobalt.com/mailman/listinfo/cobalt-users
>
--__--__--
Message: 10
Date: Thu, 16 Oct 2003 17:59:16 -0400 (EDT)
From: Gerald Waugh <gwaugh@xxxxxxxxxxxxxxxxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] raq 4 rebooting
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
On Fri, 17 Oct 2003, Tom Cameron wrote:
> About 2 weeks ago my raq 4 just started rebooting itself. It reboots about
> once a day. Sometimes it stays up for three days but most often it reboots
> daily. The reboots are always at about 4am-6am but not any exact time.
>
> There are no entries in the logs that I can use to pinpoint the cause. No
> sign of intrusion - I run chrootkit daily. Ive got all the latest patches
> and Im pretty careful to keep them up-to-date.
>
> No sign of runaway proceses, too much swap, high load etc. simply nothing
I
> can think of that would cause the problem.
>
> does anybody have any idea what it could be or how I can solve this one?
Around 4 am the daily cron jobs run.
do you get any messages to admin indicating a problem,
high temperature, or low on memory?
Gerald
--
http://frontstreetnetworks.com | http://store.raqware.com
Front Street Networks LLC, 229 Front Street, Ste.#C
New Haven, CT 06513-3203 | phone: +1-203-785-0699
--__--__--
Message: 11
Date: Thu, 16 Oct 2003 18:00:45 -0400 (EDT)
From: Gerald Waugh <gwaugh@xxxxxxxxxxxxxxxxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] HELP MAIL - raq550
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
On Thu, 16 Oct 2003, alex wrote:
> I don't use my dns server, I use the dns server from my domain provider
Then talk to your provider.
reverse is broke, and you will have email problems!
maybe you can't fix it but someone better!
Gerald
--
http://frontstreetnetworks.com | http://store.raqware.com
Front Street Networks LLC, 229 Front Street, Ste.#C
New Haven, CT 06513-3203 | phone: +1-203-785-0699
--__--__--
Message: 12
From: "Paul Shuttleworth" <paul@xxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: RE: [cobalt-users] raq 4 rebooting
Date: Thu, 16 Oct 2003 23:30:31 +0100
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
> -----Original Message-----
> From: cobalt-users-admin@xxxxxxxxxxxxxxx
> [mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of Tom Cameron
> Sent: 16 October 2003 22:44
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: [cobalt-users] raq 4 rebooting
>
>
> About 2 weeks ago my raq 4 just started rebooting itself. It reboots about
> once a day. Sometimes it stays up for three days but most often it reboots
> daily. The reboots are always at about 4am-6am but not any exact time.
>
> There are no entries in the logs that I can use to pinpoint the cause. No
> sign of intrusion - I run chrootkit daily. Ive got all the latest patches
> and Im pretty careful to keep them up-to-date.
>
> No sign of runaway proceses, too much swap, high load etc. simply
> nothing I
> can think of that would cause the problem.
>
> does anybody have any idea what it could be or how I can solve this one?
>
> Tom
>
>
Have you checked the CPU temp under normal running ?
Should be 30 - 40 c, if it is running hot then it could be the fans gone and
the extra load during the cron daily (4 am) causing high CPU temp and the
reboots.
If the fans are gone then I think they can be purchased from Gerald at
www.raqware.com ;-)
Paul.
--__--__--
Message: 13
From: "Tom Cameron" <tomcameron@xxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: RE: [cobalt-users] raq 4 rebooting
Date: Fri, 17 Oct 2003 08:32:25 +1000
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
Fri, 17 Oct 2003, Tom Cameron wrote:
=>
=> > About 2 weeks ago my raq 4 just started rebooting itself. It
=> reboots about
=> > once a day. Sometimes it stays up for three days but most
=> often it reboots
=> > daily. The reboots are always at about 4am-6am but not any exact time.
=> >
=> > There are no entries in the logs that I can use to pinpoint
=> the cause. No
=> > sign of intrusion - I run chrootkit daily. Ive got all the
=> latest patches
=> > and Im pretty careful to keep them up-to-date.
=> >
=> > No sign of runaway proceses, too much swap, high load etc.
=> simply nothing I
=> > can think of that would cause the problem.
=> >
=> > does anybody have any idea what it could be or how I can solve
=> this one?
=>
=> Around 4 am the daily cron jobs run.
=> do you get any messages to admin indicating a problem,
=> high temperature, or low on memory?
=>
=> Gerald
No, nothing of the sort. Im aware that the machine will be under higher load
during these daily tasks, but interestingly it seems to complete all the
tasks without error and usually reboot afterwards. Also, Ive put no new
sites on that machine for about 8 months and it has been runing for 2.5
years with no problems.
Ive also moved some of these tasks to 4pm to try to spread out the load, but
its made no difference.
The only thing I see in the logs recently are a high number of port135
requests blocked by the firewall.
Tom
--__--__--
Message: 14
From: "Jorge Samayoa" <jorge.samayoa@xxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Thu, 16 Oct 2003 16:31:57 -0600
Subject: [cobalt-users] Samba on Raq 550
Reply-To: cobalt-users@xxxxxxxxxxxxxxx
I have a problem with samba 3.0 in Raq 550, it compile good but the smbd
process not run.
Any body had a same problem?
________________________________
Jorge Samayoa
Gerente de Soporte Tecnico
SISTECO S.A.
12 Calle 4-74 Zona 9
Guatemala City, Guatemala
Tel: (502) 427-2205
Cel: (502) 918-2357
Fax: (502) 427-2226
Email: jorge.samayoa@xxxxxxxxxxxxxx
www.sisteco.com.gt
_________________________________
--__--__--
_____________________________________
cobalt-users mailing list
cobalt-users@xxxxxxxxxxxxxxx
To subscribe/unsubscribe, or to SEARCH THE ARCHIVES, go to:
http://list.cobalt.com/mailman/listinfo/cobalt-users
End of cobalt-users Digest