Message bouncing from virtual domain?

2000-10-18 Thread Antonio Nati

I have several virtual domains and I want to give my customers complete 
control of their mail domain, including bouncing of message.

Actually, qmail is running on service.tony.it, and all bounced messages are 
generated by [EMAIL PROTECTED] If there is any other problem, 
the message is finally sent to [EMAIL PROTECTED]
Instead, I would like that bounced messages for virtual domains are 
generated by [EMAIL PROTECTED], and that any final message is 
sent back to [EMAIL PROTECTED]

The option "CatchAll Account" doesn't help a lot.

How to setup the environment for what I want?

Thanks,

Tonino 




RE: Sub Domain Setup

2000-10-18 Thread Troy Settle


vadddomain if.untag.edu

--
  Troy Settle
  Pulaski Networks
  540.994.4254


** -Original Message-
** From: The Afif [mailto:[EMAIL PROTECTED]]
** Sent: Wednesday, October 18, 2000 12:32 AM
** To: [EMAIL PROTECTED]
** Subject: Sub Domain Setup
** 
** 
** Hello Miliser,
** 
** I have some litle problem, I am running Linux OS with RedHat distro,
** and My server running qmal as My MTA (this is at my campus)
** I have some problem to distribute email address for each 
** department at
** my faculty (I managed of whole of my server at my university)
** 
** This cronology of my problem:
** 
** I have primary domain  [EMAIL PROTECTED] and every webmaster for
** each department, look like informatic enginering have account email
** address [EMAIL PROTECTED] , this means I wnat to 
** clarify for each
** webmaster known by some alias "if"
** 
** how to setup qmail for this problem
** Thanks a lot for all your solution  support
** 
** Note :
** My tools include : qmailadmin, vpopmail, sqwebmail 0.36
** 
** Best regards,
** Husnul Afif
** mailto:[EMAIL PROTECTED]
** 
** 
** 




Re: language environment variable?

2000-10-18 Thread Daniel Augusto Fernandes

Ken Jones wrote:
 
 Hi,
 
 I'm working on redoing the qmailadmin code to support multiple
 languages. Instead of doing some wierd tricky code, I figured
 we can use the built in language environment variable from
 the web server.

There goes Mr. Jones!! Thank you, man! It'll be really appreciated!

 
 Does anyone know the name of the environment variable that
 carries the language?
 

See `man setlocale`
I think you'll choose 'LC_ALL'

 I'm removing all the hard coded english text from qmailadmin
 and putting it in a file. So no "text" is compiled in.
 

Great!!

 Then we can do translation of the html templates and this
 one file into different languages.
 So when people connect to qmailadmin, it can automatically
 display it in the proper language based on what the user
 has set as thier language in the browser.
 
 Ken Jones

Using 'Accept-Language'?

Great work!


Daniel Augusto Fernandes (DAF tm)   [EMAIL PROTECTED]
GCSNethttp://www.gcsnet.com.br/

 Se você não encontra
 o sentido das coisas
 é porque este não
 se encontra, se cria.
   Antoine Saint-Exupéry



Re: Last Try: failed to change password-Problem

2000-10-18 Thread Nathan J. Mehl

In the immortal words of Ken Jones ([EMAIL PROTECTED]):
 
 Please try this test:
 1) upgrade vpopmail to 4.9.4
 2) recompile qmailadmin
 3) test

*dingdingding*

Okay, I'm a happy camper now.

-n

--[EMAIL PROTECTED]
I've got more than one membership / to more than one club
and I owe my life / to the people that I love.  (--Ani DiFranco)
http://www.blank.org/memory/--



Re: language environment variable?

2000-10-18 Thread Ken Jones


I think I've figured it out using the printenv perl script
that comes with apache.

HTTP_ACCEPT_LANGUAGE="en, eu"

Daniel Augusto Fernandes [EMAIL PROTECTED] wrote
 Using 'Accept-Language'?

yep, that looks like the one.

I'll need to write some error checking code, but not for now.
Like..

HTTP_ACCEPT_LANGUAGE="fr, eu"

If there is no fr translation, try eu
if there is no eu translation, default to en

Ken



Re: language environment variable?

2000-10-18 Thread Daniel Augusto Fernandes

Ken Jones wrote:
 
 I think I've figured it out using the printenv perl script
 that comes with apache.
 
 HTTP_ACCEPT_LANGUAGE="en, eu"
 

Heheh... seems that I mixed up things!

 Daniel Augusto Fernandes [EMAIL PROTECTED] wrote
  Using 'Accept-Language'?
 
 yep, that looks like the one.
 
 I'll need to write some error checking code, but not for now.
 Like..
 
 HTTP_ACCEPT_LANGUAGE="fr, eu"
 
 If there is no fr translation, try eu
 if there is no eu translation, default to en
 

A while loop would resolve it, would not?


Daniel Augusto Fernandes (DAF tm)   [EMAIL PROTECTED]
GCSNethttp://www.gcsnet.com.br/

 Se você não encontra
 o sentido das coisas
 é porque este não
 se encontra, se cria.
   Antoine Saint-Exupéry



RE: domain showing up at login

2000-10-18 Thread Troy Settle


You don't even need to do that.  HTTP_HOST and a bunch of other variables
are automatically set by Apache.  If there's information on a host-by-host
basis that apache doesn't provide, then yes, doing it in the httpd.conf
would be ideal.

--
  Troy Settle
  Pulaski Networks
  540.994.4254

It's always a long day, 86400 doesn't fit into a short



 -Original Message-
 From: Daniel Augusto Fernandes [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, October 18, 2000 1:05 PM
 To: Ken Jones
 Cc: qmailadmin list
 Subject: Re: domain showing up at login


 Ken Jones wrote:
 
  Troy Settle wrote:
  
   Yep.  Your httpd should be setting an environment variable HTTP_HOST,
   which can be used for this purpose.
 
  Interesting idea. So you are saying, in the VirtualHost blah blah
  you put in the HTTP_HOST variable. What is the syntax for setting
  that in the httpd.conf file?
 
  .
  .
  .

 As in an sqwebmail example:
 INSTALL.html:
  For example, with Apache:
  VirtualHost a.b.c.d
   ServerName webmail.example.com
   [...]
   SetEnv SQWEBMAIL_TEMPLATEDIR /usr[...]
  SetEnf HTTP_HOST example.com
   [...]
  /VirtualHost

 
 Daniel Augusto Fernandes (DAF tm)   [EMAIL PROTECTED]
 GCSNethttp://www.gcsnet.com.br/
 
  Se você não encontra
  o sentido das coisas
  é porque este não
  se encontra, se cria.
Antoine Saint-Exupéry