Re: user@commons.apache.org

2018-12-19 Thread Bernd Eckenfels
Hello Bo,

Sounds like you want to ask the Tomcat user mailing-list, instead.

Gruss
Bernd
--
http://bernd.eckenfels.net

Von: Bo 
Gesendet: Donnerstag, Dezember 20, 2018 5:07 AM
An: user@commons.apache.org
Betreff: user@commons.apache.org

I'm trying to migrate a custom app running Tomcat5.5.17 to Tomcat7. This 
application is installed in its own folder on the root directory of a Windows 
2008 R2 64-bit machine. The application itself was originally "installed" via 
the unzip method, and its tomcat folder is inside of the application folder, 
which itself is placed in the C:\ root drive. As a test, to confirm I'm doing 
this right, I go to Apache Tomcat archive pages and download the .zip for 
Tomcat 5.5.17 ( https://archive.apache.org/dist/tomcat/tomcat-5/v5.5.17/ ) and 
unzip it and see if I can do a successful in place migration from the existing 
version to the exact same version from a clean install etc and it works 100%. 
During this process I also was able to use WinMerge tool to find all folder and 
file diffs and comparing the two different tomcat5.5.17 folders side by side to 
see exactly what values and lines changed from the fresh install to the already 
installed version... I will include a short summary of all said relevant and 
pertinent edits/changes at the end of this message.

Long story short, next I'm trying to migrate from Tomcat 5.5.17 to Tomcat7. I 
see that the officially supported route is two paths, migrating/updating 1 
level at a time, from Tomcat5.5 to Tomcat 6 and then from Tomcat6 to Tomcat7. 
There doesn't seem to be a single migration instruction or guide to go from 
directly Tomcat5.5 to Tomcat7. In any case, its logical enough that I can 
combine or merge all the changes from 5.5 to 6 and 6 to 7 to be able to infer 
what is the total effective elements of change needed to do the successful 
upgrading from version 5.5.17 to version 7.

see http://tomcat.apache.org/migration-6.html
http://tomcat.apache.org/migration-7.html

So I first download Tomcat7 the zip file from here : 
http://mirror.olnevhost.net/pub/apache/tomcat/tomcat-7/v7.0.92/bin/apache-tomcat-7.0.92-windows-x86.zip

Then I unzip it and put it in my application directory, after first renaming 
and backing up the existing old tomcat folder etc...

I use the service.bat to install the service for tomcat7, and confirm that it 
starts, I can see the status page just fine... so I proceed to install the 
custom application.

I do step by step, initially just copying over the application folder in the 
webapps from the tomcat5 to tomcat7 folder, then I restart the tomcat7 service, 
sign back in to the status page, and I see the application is now listed under 
the List Applications section. I try to run/start it but of course it won't run 
or start yet giving error of : "FAIL - Application at context path /qms could 
not be started"

I realize some major structural changes occured from version 5.5 to version 6, 
namely detailed here about the merging and consolidation of some directories 
and especially related to lib folders into a single \tomcat\lib folder in 
version 6 and version 7.

So I copy/paste and transplant all the stuff in \common\endorsed and 
\common\lib and \shared\lib to the right locations in the tomcat7 and I follow 
that with updating the tomcat-users.xml in conf


Then I restart the tomcat7 service, and go back to the status page to start up 
my custom application but instead of getting a "FAIL - Application at context 
path /qms could not be started" error message, I'm now getting a new error 
message that states:

Description The origin server did not find a current representation for the 
target resource or is not willing to disclose that one exists.
Apache Tomcat/7.0.92

I googled around and people advised that need to use Eclipse tool to help, but 
my server doesn't have it installed, the application was originally never built 
with it, never used it and didn't come with it, plus furthermore it doesn't 
appear some of the solutions are relevant to the issue that I'm facing...

What can I do to get this to work on tomcat7?


\\\

diff changes from tomcat.initialoriginal to tomcat5517zip


in C:\VE4_0\tomcat.initialoriginal\bin
jmx.jar LEFT SIDE ONLY

=
In
C:\VE4_0\tomcat.initialoriginal\bin\service.bat


LINE 103 "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions 
"-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\common\endorsed
 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9000 
-Dcom.sun.management.jmxremote.authenticate=false 
-Dcom.sun.management.jmxremote.ssl=false" --StartMode jvm --StopMode jvm
vs "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions 
"-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\common\endorsed"
 --Sta

user@commons.apache.org

2018-12-19 Thread Bo
I'm trying to migrate a custom app running Tomcat5.5.17 to Tomcat7. This 
application is installed in its own folder on the root directory of a Windows 
2008 R2 64-bit machine. The application itself was originally "installed" via 
the unzip method, and its tomcat folder is inside of the application folder, 
which itself is placed in the C:\ root drive. As a test, to confirm I'm doing 
this right, I go to Apache Tomcat archive pages and download the .zip for 
Tomcat 5.5.17 ( https://archive.apache.org/dist/tomcat/tomcat-5/v5.5.17/ ) and 
unzip it and see if I can do a successful in place migration from the existing 
version to the exact same version from a clean install etc and it works 100%. 
During this process I also was able to use WinMerge tool to find all folder and 
file diffs and comparing the two different tomcat5.5.17 folders side by side to 
see exactly what values and lines changed from the fresh install to the already 
installed version... I will include a short summary of all said relevant and 
pertinent edits/changes at the end of this message.

Long story short, next I'm trying to migrate from Tomcat 5.5.17 to Tomcat7. I 
see that the officially supported route is two paths, migrating/updating 1 
level at a time, from Tomcat5.5 to Tomcat 6 and then from Tomcat6 to Tomcat7. 
There doesn't seem to be a single migration instruction or guide to go from 
directly Tomcat5.5 to Tomcat7. In any case, its logical enough that I can 
combine or merge all the changes from 5.5 to 6 and 6 to 7 to be able to infer 
what is the total effective elements of change needed to do the successful 
upgrading from version 5.5.17 to version 7.

see http://tomcat.apache.org/migration-6.html
http://tomcat.apache.org/migration-7.html

So I first download Tomcat7 the zip file from here : 
http://mirror.olnevhost.net/pub/apache/tomcat/tomcat-7/v7.0.92/bin/apache-tomcat-7.0.92-windows-x86.zip

Then I unzip it and put it in my application directory, after first renaming 
and backing up the existing old tomcat folder etc...

I use the service.bat to install the service for tomcat7, and confirm that it 
starts, I can see the status page just fine... so I proceed to install the 
custom application.

I do step by step, initially just copying over the application folder in the 
webapps from the tomcat5 to tomcat7 folder, then I restart the tomcat7 service, 
sign back in to the status page, and I see the application is now listed under 
the List Applications section. I try to run/start it but of course it won't run 
or start yet giving error of : "FAIL - Application at context path /qms could 
not be started"

I realize some major structural changes occured from version 5.5 to version 6, 
namely detailed here about the merging and consolidation of some directories 
and especially related to lib folders into a single \tomcat\lib folder in 
version 6 and version 7.

So I copy/paste and transplant all the stuff in \common\endorsed and 
\common\lib and \shared\lib to the right locations in the tomcat7 and I follow 
that with updating the tomcat-users.xml in conf


Then I restart the tomcat7 service, and go back to the status page to start up 
my custom application but instead of getting a "FAIL - Application at context 
path /qms could not be started" error message, I'm now getting a new error 
message that states:

Description The origin server did not find a current representation for the 
target resource or is not willing to disclose that one exists.
Apache Tomcat/7.0.92

I googled around and people advised that need to use Eclipse tool to help, but 
my server doesn't have it installed, the application was originally never built 
with it, never used it and didn't come with it, plus furthermore it doesn't 
appear some of the solutions are relevant to the issue that I'm facing...

What can I do to get this to work on tomcat7?


\\\

diff changes from tomcat.initialoriginal to tomcat5517zip


in C:\VE4_0\tomcat.initialoriginal\bin
jmx.jar LEFT SIDE ONLY

=
In
C:\VE4_0\tomcat.initialoriginal\bin\service.bat


LINE 103 "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions 
"-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\common\endorsed
 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9000 
-Dcom.sun.management.jmxremote.authenticate=false 
-Dcom.sun.management.jmxremote.ssl=false" --StartMode jvm --StopMode jvm
vs "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions 
"-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\common\endorsed"
 --StartMode jvm --StopMode jvm

LINE 108 "%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions 
"-Djava.io.tmpdir=%CATALINA_BASE%\temp" --JvmMs 1620 --JvmMx 1620
vs "%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions 
"-Djava.io.tmpdir=%CATALINA_BASE%\temp" --JvmMs 128 --JvmMx 256

=

in C:\VE4_0\tomcat.initialoriginal\common\endorsed
exists

Re: Prefix for mails to user@commons.apache.org?

2016-08-31 Thread sebb
On 30 August 2016 at 22:14, Thomas Brand <t...@trellis.ch> wrote:
>
> Hi,
> i understand that using the list-id in the header is the correct thing to
> do, and using that id is certainly an elegant way to i.e. automatically
> file these messages into its own folder. However setting up filters isn't
> sometimes easy or limited and mails end up flat. Please have a look at
> this screenshot part:
> http://picpaste.com/pics/inbox_list_messages-AZ0VF5BA.1472591249.png
> It must be obvious that a tag *in the subject* can be helpful. If along
> "tagged" messages, there are messages from random people with random
> subjects, it makes it harder at least in that scenario i'm using mail
> (blame on how).

Note that there are lots of ASF mailing lists.
Indeed there are lots of ASF user mailing lists.
And other organisations have user mailing lists too.
So the feature would only work if the full mailing list id was used.

Also the Commons mailing lists cover multiple components; the
convention is to prefix the subject with the [component] name.
So the full subject for this mail would become:

user@commons.apache.org [ALL] Prefix for mails to user@commons.apache.org?

> These few additional bytes wouldn't be a waste of anything IMHO. :)

It's not just a few bytes, and it does cause problems:
As far as I can tell from the screenshot you referenced, the prefix
would result in truncation of the actual subject.

> Cheers
> Thomas
>
> On Tue, August 30, 2016 18:57, Christopher Schultz wrote:
>> -BEGIN PGP SIGNED MESSAGE-
>> Hash: SHA256
>>
>>
>> Matt,
>>
>>
>> On 8/30/16 12:01 PM, Matt Sicker wrote:
>>
>>> Oh, I thought he was talking about subprojects, not lists. Yeah,
>>> the List-Id and other List-* headers are good enough for this normally.
>>
>> .. or the "TO" or "CC" headers. Any client should be able to route
>> messages based upon those.
>>
>> - -chris
>>
>>
>>> On 30 August 2016 at 10:49, Paix, Manfred <mp...@informatica.com>
>>> wrote:
>>>
>>>
>>>>
>>>> I don't like an additional prefix in the subject line, the
>>>> subproject like [math] should be enough.
>>>>
>>>> -Ursprüngliche Nachricht- Von: Matt Sicker
>>>> [mailto:boa...@gmail.com] Gesendet: Dienstag, 30. August 2016
>>>> 17:43 An: Commons Users List Betreff: Re: Prefix for mails to
>>>> user@commons.apache.org?
>>>>
>>>> The List-Id header only says which list it's from, not which
>>>> subproject it's in.
>>>>
>>>> On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:
>>>>
>>>>
>>>>> On Tue, August 30, 2016 17:18, Mark Thomas wrote:
>>>>>
>>>>>> On 30/08/2016 16:14, Thomas Brand wrote:
>>>>>>
>>>>>>
>>>>>>>
>>>>>>> Hi, when i receive mail from other lists, they have a
>>>>>>> subject like
>>>>> [listname]
>>>>>
>>>>>>> subject, which akes it easy to quickly sort and overview mails
>>>>>>> from multiple lists in one box (i.e. the inbox). It also makes
>>>>>>> it easier to quickly filter from spam messages. Would it be
>>>>>>> possible that listserver from user@commons.apache.org would
>>>>>>> automagically prefix
>>>> the subject?
>>>>>>
>>>>>> Unlikely.
>>>>>>
>>>>>>
>>>>>>
>>>>>> The ASF mail server sets the List-Id mail header which can be
>>>>>> used for sorting / filtering.
>>>>>>
>>>>>> Mark
>>>>>>
>>>>>>
>>>>>
>>>>> I see, fair enough. Would it hurt though if there would be this
>>>>> redundancy for dumber
>>>> clients?
>>>>> Greetings
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> ---
>>>>> -
>>>>>
>> - -
>>
>>>>>
>>>>>
>> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
>>
>>>>> For additional commands, e-mail: user-h...@commons.apache.org
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>>

Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Thomas Brand

Hi,
i understand that using the list-id in the header is the correct thing to
do, and using that id is certainly an elegant way to i.e. automatically
file these messages into its own folder. However setting up filters isn't
sometimes easy or limited and mails end up flat. Please have a look at
this screenshot part:
http://picpaste.com/pics/inbox_list_messages-AZ0VF5BA.1472591249.png
It must be obvious that a tag *in the subject* can be helpful. If along
"tagged" messages, there are messages from random people with random
subjects, it makes it harder at least in that scenario i'm using mail
(blame on how).
These few additional bytes wouldn't be a waste of anything IMHO. :)
Cheers
Thomas

On Tue, August 30, 2016 18:57, Christopher Schultz wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
>
> Matt,
>
>
> On 8/30/16 12:01 PM, Matt Sicker wrote:
>
>> Oh, I thought he was talking about subprojects, not lists. Yeah,
>> the List-Id and other List-* headers are good enough for this normally.
>
> .. or the "TO" or "CC" headers. Any client should be able to route
> messages based upon those.
>
> - -chris
>
>
>> On 30 August 2016 at 10:49, Paix, Manfred <mp...@informatica.com>
>> wrote:
>>
>>
>>>
>>> I don't like an additional prefix in the subject line, the
>>> subproject like [math] should be enough.
>>>
>>> -Ursprüngliche Nachricht- Von: Matt Sicker
>>> [mailto:boa...@gmail.com] Gesendet: Dienstag, 30. August 2016
>>> 17:43 An: Commons Users List Betreff: Re: Prefix for mails to
>>> user@commons.apache.org?
>>>
>>> The List-Id header only says which list it's from, not which
>>> subproject it's in.
>>>
>>> On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:
>>>
>>>
>>>> On Tue, August 30, 2016 17:18, Mark Thomas wrote:
>>>>
>>>>> On 30/08/2016 16:14, Thomas Brand wrote:
>>>>>
>>>>>
>>>>>>
>>>>>> Hi, when i receive mail from other lists, they have a
>>>>>> subject like
>>>> [listname]
>>>>
>>>>>> subject, which akes it easy to quickly sort and overview mails
>>>>>> from multiple lists in one box (i.e. the inbox). It also makes
>>>>>> it easier to quickly filter from spam messages. Would it be
>>>>>> possible that listserver from user@commons.apache.org would
>>>>>> automagically prefix
>>> the subject?
>>>>>
>>>>> Unlikely.
>>>>>
>>>>>
>>>>>
>>>>> The ASF mail server sets the List-Id mail header which can be
>>>>> used for sorting / filtering.
>>>>>
>>>>> Mark
>>>>>
>>>>>
>>>>
>>>> I see, fair enough. Would it hurt though if there would be this
>>>> redundancy for dumber
>>> clients?
>>>> Greetings
>>>>
>>>>
>>>>
>>>>
>>>> ---
>>>> -
>>>>
> - -
>
>>>>
>>>>
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
>
>>>> For additional commands, e-mail: user-h...@commons.apache.org
>>>>
>>>>
>>>>
>>>
>>>
>>> -- Matt Sicker <boa...@gmail.com>
>>>
>>>
>>> -
>>>
>>>
>>>
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
>
>>> For additional commands, e-mail: user-h...@commons.apache.org
>>>
>>>
>>>
>>
>>
> -BEGIN PGP SIGNATURE-
> Comment: GPGTools - http://gpgtools.org
> Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/
>
>
> iQIcBAEBCAAGBQJXxbruAAoJEBzwKT+lPKRY1H8P/RRvlJ5WS3QxtM4X0oBBgHw8
> X2LxZCDF65NFz8eh/c/70E7PlmsQlr4UoigwlPwUrjXUwETle7CZMuU1AnOWXQBB
> c7NhuKMp0CdCnGw+EMaFoFmVFtD6MJgCFD8MqvSZTZ4+phy/MREh+ZKMkrutn40o
> yoEmeyP+aTRDOERfgHvhRQ+VJRmuasCg8wiP1oTvx1hbuYSKWpVXYrV2K5suJpjT
> bxUfqfIHkQAjwxNJX4XD0WlkwvE7xtLAKCsFlhcGTo7v7YyVK2X1EHR2xlrSL7ui
> MBrvE/KtLfG+d852OXcJnAnvIaCLQBMrb2qOBd5Xjaz05Ms3JtakUGibbG1mDdr2
> Tcsi86kpv0Uiuy4GETiZtNh7zV6NPzHepXVHY68gYSErvfkyljeiObPFDYGD4GJG
> TVwrLBIWl79VBE8TPqnjGD/NbalfQwcOd9ct3ygINWpFI+Ti5K3yHRwFpo/qBR8G
> KTLABbK2UIje/is4roJc2YEmQWYSttxboCTIEbriLOO4+9uAJ5HYxRGT57jSSmwe
> f93HReSFAt6HWomXFlBtHp+GUHjn7C+YCAAJLQ8TvFFyey0HvpHv5P1ZpKB2XRmr
> LhV6FjcKZLfSBHWXp8BbvzAF60p6W/L2Tw3Z3F4kJiCFYqJofeU3/pZDu8xJJRDC
> 1N8PK6wSHpucC1e8q9zD
> =+0El
> -END PGP SIGNATURE-
>
>
> -
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> For additional commands, e-mail: user-h...@commons.apache.org
>
>
>



-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Matt,

On 8/30/16 12:01 PM, Matt Sicker wrote:
> Oh, I thought he was talking about subprojects, not lists. Yeah,
> the List-Id and other List-* headers are good enough for this
> normally.

.. or the "TO" or "CC" headers. Any client should be able to route
messages based upon those.

- -chris

> On 30 August 2016 at 10:49, Paix, Manfred <mp...@informatica.com>
> wrote:
> 
>> 
>> I don't like an additional prefix in the subject line, the
>> subproject like [math] should be enough.
>> 
>> -Ursprüngliche Nachricht- Von: Matt Sicker
>> [mailto:boa...@gmail.com] Gesendet: Dienstag, 30. August 2016
>> 17:43 An: Commons Users List Betreff: Re: Prefix for mails to
>> user@commons.apache.org?
>> 
>> The List-Id header only says which list it's from, not which
>> subproject it's in.
>> 
>> On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:
>> 
>>> On Tue, August 30, 2016 17:18, Mark Thomas wrote:
>>>> On 30/08/2016 16:14, Thomas Brand wrote:
>>>> 
>>>>> 
>>>>> Hi, when i receive mail from other lists, they have a
>>>>> subject like
>>> [listname]
>>>>> subject, which akes it easy to quickly sort and overview
>>>>> mails from multiple lists in one box (i.e. the inbox). It
>>>>> also makes it easier to quickly filter from spam messages.
>>>>> Would it be possible that listserver from
>>>>> user@commons.apache.org would automagically prefix
>> the subject?
>>>> 
>>>> Unlikely.
>>>> 
>>>> 
>>>> The ASF mail server sets the List-Id mail header which can be
>>>> used for sorting / filtering.
>>>> 
>>>> Mark
>>>> 
>>> 
>>> I see, fair enough. Would it hurt though if there would be this
>>> redundancy for dumber
>> clients?
>>> Greetings
>>> 
>>> 
>>> 
>>> 
- -
>>>
>>> 
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
>>> For additional commands, e-mail: user-h...@commons.apache.org
>>> 
>>> 
>> 
>> 
>> -- Matt Sicker <boa...@gmail.com>
>> 
>> -
>>
>> 
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
>> For additional commands, e-mail: user-h...@commons.apache.org
>> 
>> 
> 
> 
-BEGIN PGP SIGNATURE-
Comment: GPGTools - http://gpgtools.org
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBCAAGBQJXxbruAAoJEBzwKT+lPKRY1H8P/RRvlJ5WS3QxtM4X0oBBgHw8
X2LxZCDF65NFz8eh/c/70E7PlmsQlr4UoigwlPwUrjXUwETle7CZMuU1AnOWXQBB
c7NhuKMp0CdCnGw+EMaFoFmVFtD6MJgCFD8MqvSZTZ4+phy/MREh+ZKMkrutn40o
yoEmeyP+aTRDOERfgHvhRQ+VJRmuasCg8wiP1oTvx1hbuYSKWpVXYrV2K5suJpjT
bxUfqfIHkQAjwxNJX4XD0WlkwvE7xtLAKCsFlhcGTo7v7YyVK2X1EHR2xlrSL7ui
MBrvE/KtLfG+d852OXcJnAnvIaCLQBMrb2qOBd5Xjaz05Ms3JtakUGibbG1mDdr2
Tcsi86kpv0Uiuy4GETiZtNh7zV6NPzHepXVHY68gYSErvfkyljeiObPFDYGD4GJG
TVwrLBIWl79VBE8TPqnjGD/NbalfQwcOd9ct3ygINWpFI+Ti5K3yHRwFpo/qBR8G
KTLABbK2UIje/is4roJc2YEmQWYSttxboCTIEbriLOO4+9uAJ5HYxRGT57jSSmwe
f93HReSFAt6HWomXFlBtHp+GUHjn7C+YCAAJLQ8TvFFyey0HvpHv5P1ZpKB2XRmr
LhV6FjcKZLfSBHWXp8BbvzAF60p6W/L2Tw3Z3F4kJiCFYqJofeU3/pZDu8xJJRDC
1N8PK6wSHpucC1e8q9zD
=+0El
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Matt Sicker
Oh, I thought he was talking about subprojects, not lists. Yeah, the
List-Id and other List-* headers are good enough for this normally.

On 30 August 2016 at 10:49, Paix, Manfred <mp...@informatica.com> wrote:

>
> I don't like an additional prefix in the subject line, the subproject like
> [math] should be enough.
>
> -Ursprüngliche Nachricht-
> Von: Matt Sicker [mailto:boa...@gmail.com]
> Gesendet: Dienstag, 30. August 2016 17:43
> An: Commons Users List
> Betreff: Re: Prefix for mails to user@commons.apache.org?
>
> The List-Id header only says which list it's from, not which subproject
> it's in.
>
> On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:
>
> > On Tue, August 30, 2016 17:18, Mark Thomas wrote:
> > > On 30/08/2016 16:14, Thomas Brand wrote:
> > >
> > >>
> > >> Hi,
> > >> when i receive mail from other lists, they have a subject like
> > [listname]
> > >> subject, which akes it easy to quickly sort and overview mails from
> > >> multiple lists in one box (i.e. the inbox). It also makes it easier
> > >> to quickly filter from spam messages. Would it be possible that
> > >> listserver from  user@commons.apache.org would automagically prefix
> the subject?
> > >
> > > Unlikely.
> > >
> > >
> > > The ASF mail server sets the List-Id mail header which can be used
> > > for sorting / filtering.
> > >
> > > Mark
> > >
> >
> > I see, fair enough.
> > Would it hurt though if there would be this redundancy for dumber
> clients?
> > Greetings
> >
> >
> >
> > -
> > To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> > For additional commands, e-mail: user-h...@commons.apache.org
> >
> >
>
>
> --
> Matt Sicker <boa...@gmail.com>
>
> -
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> For additional commands, e-mail: user-h...@commons.apache.org
>
>


-- 
Matt Sicker <boa...@gmail.com>


AW: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Paix, Manfred

I don't like an additional prefix in the subject line, the subproject like 
[math] should be enough.

-Ursprüngliche Nachricht-
Von: Matt Sicker [mailto:boa...@gmail.com] 
Gesendet: Dienstag, 30. August 2016 17:43
An: Commons Users List
Betreff: Re: Prefix for mails to user@commons.apache.org?

The List-Id header only says which list it's from, not which subproject it's in.

On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:

> On Tue, August 30, 2016 17:18, Mark Thomas wrote:
> > On 30/08/2016 16:14, Thomas Brand wrote:
> >
> >>
> >> Hi,
> >> when i receive mail from other lists, they have a subject like
> [listname]
> >> subject, which akes it easy to quickly sort and overview mails from 
> >> multiple lists in one box (i.e. the inbox). It also makes it easier 
> >> to quickly filter from spam messages. Would it be possible that 
> >> listserver from  user@commons.apache.org would automagically prefix the 
> >> subject?
> >
> > Unlikely.
> >
> >
> > The ASF mail server sets the List-Id mail header which can be used 
> > for sorting / filtering.
> >
> > Mark
> >
>
> I see, fair enough.
> Would it hurt though if there would be this redundancy for dumber clients?
> Greetings
>
>
>
> -
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> For additional commands, e-mail: user-h...@commons.apache.org
>
>


--
Matt Sicker <boa...@gmail.com>

-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Matt Sicker
The List-Id header only says which list it's from, not which subproject
it's in.

On 30 August 2016 at 10:23, Thomas Brand <t...@trellis.ch> wrote:

> On Tue, August 30, 2016 17:18, Mark Thomas wrote:
> > On 30/08/2016 16:14, Thomas Brand wrote:
> >
> >>
> >> Hi,
> >> when i receive mail from other lists, they have a subject like
> [listname]
> >> subject, which akes it easy to quickly sort and overview mails from
> >> multiple lists in one box (i.e. the inbox). It also makes it easier to
> >> quickly filter from spam messages. Would it be possible that listserver
> >> from  user@commons.apache.org would automagically prefix the subject?
> >
> > Unlikely.
> >
> >
> > The ASF mail server sets the List-Id mail header which can be used for
> > sorting / filtering.
> >
> > Mark
> >
>
> I see, fair enough.
> Would it hurt though if there would be this redundancy for dumber clients?
> Greetings
>
>
>
> -
> To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
> For additional commands, e-mail: user-h...@commons.apache.org
>
>


-- 
Matt Sicker <boa...@gmail.com>


Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Thomas Brand
On Tue, August 30, 2016 17:18, Mark Thomas wrote:
> On 30/08/2016 16:14, Thomas Brand wrote:
>
>>
>> Hi,
>> when i receive mail from other lists, they have a subject like [listname]
>> subject, which akes it easy to quickly sort and overview mails from
>> multiple lists in one box (i.e. the inbox). It also makes it easier to
>> quickly filter from spam messages. Would it be possible that listserver
>> from  user@commons.apache.org would automagically prefix the subject?
>
> Unlikely.
>
>
> The ASF mail server sets the List-Id mail header which can be used for
> sorting / filtering.
>
> Mark
>

I see, fair enough.
Would it hurt though if there would be this redundancy for dumber clients?
Greetings



-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Mark Thomas
On 30/08/2016 16:14, Thomas Brand wrote:
> 
> Hi,
> when i receive mail from other lists, they have a subject like
> [listname] subject, which makes it easy to quickly sort and overview mails
> from multiple lists in one box (i.e. the inbox). It also makes it easier
> to quickly filter from spam messages.
> Would it be possible that listserver from  user@commons.apache.org would
> automagically prefix the subject?

Unlikely.

The ASF mail server sets the List-Id mail header which can be used for
sorting / filtering.

Mark


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Prefix for mails to user@commons.apache.org?

2016-08-30 Thread Thomas Brand

Hi,
when i receive mail from other lists, they have a subject like
[listname] subject, which makes it easy to quickly sort and overview mails
from multiple lists in one box (i.e. the inbox). It also makes it easier
to quickly filter from spam messages.
Would it be possible that listserver from  user@commons.apache.org would
automagically prefix the subject?
Thanks + best regards
Thomas


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Incubator PMC/Board report for May 2011 (user@commons.apache.org)

2011-05-01 Thread no-reply
Dear OGNL Developers,

This email was sent by an automated system on behalf of the Apache Incubator 
PMC.
It is an initial reminder to give you plenty of time to prepare your quarterly
board report.

The board meeting is scheduled for  Thurs, 19 May 2011, 10 am Pacific. The 
report 
for your podling will form a part of the Incubator PMC report. The Incubator 
PMC 
requires your report to be submitted one week before the board meeting, to 
allow 
sufficient time for review.

Please submit your report with sufficient time to allow the incubator PMC, and 
subsequently board members to review and digest. Again, the very latest you 
should submit your report is one week prior to the board meeting.

Thanks,

The Apache Incubator PMC

Submitting your Report
--

Your report should contain the following:

 * Your project name
 * A brief description of your project, which assumes no knowledge of the 
project
   or necessarily of its field
 * A list of the three most important issues to address in the move towards 
   graduation.
 * Any issues that the Incubator PMC or ASF Board might wish/need to be aware of
 * How has the community developed since the last report
 * How has the project developed since the last report.
 
This should be appended to the Incubator Wiki page at:

  http://wiki.apache.org/incubator/May2011

Note: This manually populated. You may need to wait a little before this page is
  created from a template.

Mentors
---
Mentors should review reports for their project(s) and sign them off on the 
Incubator wiki page. Signing off reports shows that you are following the 
project - projects that are not signed may raise alarms for the Incubator PMC.

Incubator PMC


-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org



Re: Returned post for user@commons.apache.org

2010-12-02 Thread Irfan Masood

 Hi,

 I have one concern, will apache chain work well in a cluster enviornment
 with EJBs. Secondly, is there any alternate framework having same
 functionality as apache chain have?

 Best Regards!

 Irfan


Re: confirm unsubscribe from user@commons.apache.org

2010-03-13 Thread Kurt Guenther

On 3/13/2010 2:48 PM, user-h...@commons.apache.org wrote:

Hi! This is the ezmlm program. I'm managing the
user@commons.apache.org mailing list.

I'm working for my owner, who can be reached
at user-ow...@commons.apache.org.

To confirm that you would like

ku...@serent.com

removed from the user mailing list, please send a short reply
to this address:

user-uc.1268509686.fjjjikndcofclinmoecp-kurtg=serent@commons.apache.org

Usually, this happens when you just hit the reply button.
If this does not work, simply copy the address and paste it into
the To: field of a new message.

or click here:

mailto:user-uc.1268509686.fjjjikndcofclinmoecp-kurtg=serent@commons.apache.org

I haven't checked whether your address is currently on the mailing list.
To see what address you used to subscribe, look at the messages you are
receiving from the mailing list. Each message has your address hidden
inside its return path; for example, m...@xdd.ff.com receives messages
with return path:user-return-number-mary=xdd.ff@commons.apache.org.

Some mail programs are broken and cannot handle long addresses. If you
cannot reply to this request, instead send a message to
user-requ...@commons.apache.org  and put the entire address listed above
into the Subject: line.


--- Administrative commands for the user list ---

I can handle administrative requests automatically. Please
do not send them to the list address! Instead, send
your message to the correct command address:

To subscribe to the list, send a message to:
user-subscr...@commons.apache.org

To remove your address from the list, send a message to:
user-unsubscr...@commons.apache.org

Send mail to the following for info and FAQ for this list:
user-i...@commons.apache.org
user-...@commons.apache.org

Similar addresses exist for the digest list:
user-digest-subscr...@commons.apache.org
user-digest-unsubscr...@commons.apache.org

To get messages 123 through 145 (a maximum of 100 per request), mail:
user-get.123_...@commons.apache.org

To get an index with subject and author for messages 123-456 , mail:
user-index.123_...@commons.apache.org

They are always returned as sets of 100, max 2000 per request,
so you'll actually get 100-499.

To receive all messages with the same subject as message 12345,
send a short message to:
user-thread.12...@commons.apache.org

The messages should contain one line or word of text to avoid being
treated as s...@m, but I will ignore their content.
Only the ADDRESS you send to is important.

You can start a subscription for an alternate address,
for example j...@host.domain, just add a hyphen and your
address (with '=' instead of '@') after the command word:
user-subscribe-john=host.dom...@commons.apache.org

To stop subscription for this address, mail:
user-unsubscribe-john=host.dom...@commons.apache.org

In both cases, I'll send a confirmation message to that address. When
you receive it, simply reply to it to complete your subscription.

If despite following these instructions, you do not get the
desired results, please contact my owner at
user-ow...@commons.apache.org. Please be patient, my owner is a
lot slower than I am ;-)

--- Enclosed is a copy of the request I received.

Return-Path:ku...@serent.com
Received: (qmail 47539 invoked by uid 99); 13 Mar 2010 19:48:06 -
Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136)
 by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Mar 2010 19:48:06 +
X-ASF-Spam-Status: No, hits=-2.0 required=10.0
tests=ASF_LIST_OPS,RCVD_IN_DNSWL_NONE,SPF_PASS
X-Spam-Check-By: apache.org
Received-SPF: pass (athena.apache.org: local policy)
Received: from [209.85.217.213] (HELO mail-gx0-f213.google.com) (209.85.217.213)
 by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Mar 2010 19:48:05 +
Received: by gxk5 with SMTP id 5so964804gxk.6
 foruser-unsubscr...@commons.apache.org; Sat, 13 Mar 2010 11:47:44 
-0800 (PST)
Received: by 10.101.6.5 with SMTP id j5mr3877071ani.11.1268509664655;
 Sat, 13 Mar 2010 11:47:44 -0800 (PST)
Received: from [10.230.48.107] 
(173-12-128-186-jacksonville.hfc.comcastbusiness.net [173.12.128.186])
 by mx.google.com with ESMTPS id 9sm951031ywe.7.2010.03.13.11.47.43
 (version=SSLv3 cipher=RC4-MD5);
 Sat, 13 Mar 2010 11:47:43 -0800 (PST)
Message-ID:4b9bebde.3010...@serent.com
Date: Sat, 13 Mar 2010 14:47:42 -0500
From: Kurt Guentherku...@serent.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.8) 
Gecko/20100227 Thunderbird/3.0.3
MIME-Version: 1.0
To: user-unsubscr...@commons.apache.org
Subject: unsubscribe
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

unsubscribe

   



-
To unsubscribe, e-mail: user-unsubscr...@commons.apache.org
For additional commands, e-mail: user-h...@commons.apache.org