From: SourceForge.net <no...@so...> - 2011-07-13 05:00:21
|
Feature Requests item #3365625, was opened at 2011-07-13 14:00 Message generated for change (Tracker Item Submitted) made by apptaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nobody/Anonymous (nobody) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2011-07-13 06:14:56
|
Feature Requests item #3365625, was opened at 2011-07-13 14:00 Message generated for change (Comment added) made by apptaro You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nobody/Anonymous (nobody) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- >Comment By: apptaro (apptaro) Date: 2011-07-13 15:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2011-07-13 22:45:12
|
Feature Requests item #3365625, was opened at 2011-07-13 07:00 Message generated for change (Comment added) made by nikosch You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) >Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- >Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-14 00:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-13 08:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-08-29 01:29:45
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-08-28 18:29 Message: Write more, thats all I have to say. Literally, it seems as though you relied on the video to make your point. You definitely know what youre talking about, why throw away your intelligence on just posting videos to your site when you could be giving us something enlightening to read? http://www.hotskijackets.com/ ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-10-16 03:43:35
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-15 20:43 Message: Hmm it seems like your blog ate my first comment (it was extremely long) so I guess I'll just sum it up what I wrote and say, I'm thoroughly enjoying your blog. I too am an aspiring blog writer but I'm still new to the whole thing. Do you have any helpful hints for rookie blog writers? I'd definitely appreciate it. [url=http://northfacess.overblog.com/]Maisie[/url] <a href="http://northfacess.overblog.com/" title="Maisie">Maisie</a> ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-10-22 10:21:59
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-22 03:21 Message: Thanks for the marvelous posting! I certainly enjoyed reading it, you could be a great author.I will remember to bookmark your blog and will eventually come back sometime soon. I want to encourage you to ultimately continue your great job, have a nice day! <a href="http://northfacebackpackss.blogspot.com/2012/10/wwwnorthfaceclearance4uscom-bliss-told.html" title="north face jackets clearance">north face jackets clearance</a> ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-10-27 21:41:41
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-27 14:41 Message: My programmer is trying to persuade me to move to .net from PHP. I have always disliked the idea because of the costs. But he's tryiong none the less. I've been using Movable-type on numerous websites for about a year and am nervous about switching to another platform. I have heard very good things about blogengine.net. Is there a way I can import all my wordpress content into it? Any kind of help would be really appreciated! [url=http://www.pinkribbonwomensjackets.com/2012/10/26/north-face-osito-jacket-evian-will-hand-out-25/]north face clearance[/url] <a href="http://www.pinkribbonwomensjackets.com/2012/10/26/north-face-osito-jacket-evian-will-hand-out-25/" title="north face clearance">north face clearance</a> ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-22 03:21 Message: Thanks for the marvelous posting! I certainly enjoyed reading it, you could be a great author.I will remember to bookmark your blog and will eventually come back sometime soon. I want to encourage you to ultimately continue your great job, have a nice day! <a href="http://northfacebackpackss.blogspot.com/2012/10/wwwnorthfaceclearance4uscom-bliss-told.html" title="north face jackets clearance">north face jackets clearance</a> ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-10-28 01:35:33
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Comment added) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-27 18:35 Message: Have you ever considered creating an e-book or guest authoring on other blogs? I have a blog based on the same ideas you discuss and would love to have you share some stories/information. I know my subscribers would enjoy your work. If you are even remotely interested, feel free to shoot me an email. <a href="http://northfacediscountcheap.blinkweb.com/" title="north face discount">north face discount</a> ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-27 14:41 Message: My programmer is trying to persuade me to move to .net from PHP. I have always disliked the idea because of the costs. But he's tryiong none the less. I've been using Movable-type on numerous websites for about a year and am nervous about switching to another platform. I have heard very good things about blogengine.net. Is there a way I can import all my wordpress content into it? Any kind of help would be really appreciated! [url=http://www.pinkribbonwomensjackets.com/2012/10/26/north-face-osito-jacket-evian-will-hand-out-25/]north face clearance[/url] <a href="http://www.pinkribbonwomensjackets.com/2012/10/26/north-face-osito-jacket-evian-will-hand-out-25/" title="north face clearance">north face clearance</a> ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2012-10-22 03:21 Message: Thanks for the marvelous posting! I certainly enjoyed reading it, you could be a great author.I will remember to bookmark your blog and will eventually come back sometime soon. I want to encourage you to ultimately continue your great job, have a nice day! <a href="http://northfacebackpackss.blogspot.com/2012/10/wwwnorthfaceclearance4uscom-bliss-told.html" title="north face jackets clearance">north face jackets clearance</a> ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |
From: SourceForge.net <no...@so...> - 2012-10-28 16:20:38
|
Feature Requests item #3365625, was opened at 2011-07-12 22:00 Message generated for change (Settings changed) made by nikosch You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Closed Priority: 5 Private: No Submitted By: apptaro (apptaro) Assigned to: Nikolaus Schulz (nikosch) Summary: Support for automatic setuid Initial Comment: As described in the bug #3063535 (is owned by someone else!) archivemail version 0.7.2+ does not do setuid when archivemail is run by root and the target mailbox is owned by someone else. I need this functionality. My mail server is configured so that spam messages are automatically moved to a spam folder for each users. I want to use archivemail to delete old messages from each user's spam folder like this: archivemail --days=30 --delete --include-flagged /home/*/Mail/Spam but I get "/home/username/Mail/Spam is owned by someone else!" error. ---------------------------------------------------------------------- Comment By: Nikolaus Schulz (nikosch) Date: 2011-07-13 15:45 Message: Yes, basically, in your case you are required to write some sort of a script. Not that convenient, but it puts you in control, and it's much better than such a setuid feature, which existed in archivemail up to v0.8.0, and was removed for a reason. ---------------------------------------------------------------------- Comment By: apptaro (apptaro) Date: 2011-07-12 23:14 Message: For now, I created a script such as below to do the job. Maybe this is enough. #!/bin/sh ls /home | while read line ARCMAIL="/usr/bin/archivemail --delete --include-flagged --quiet" do USER="$line" MAILBOX="/home/$USER/Mail/Spam" if [ -f $MAILBOX ] ; then sudo -u $USER $ARCMAIL $MAILBOX fi done ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=456913&aid=3365625&group_id=49630 |