Gossamer Forum
Quote Reply
questions
How does one edit the template for the manage of pop3 accounts. After you go into the options / remote mail/ and then click manage pop account.
Also on the same note, when you check messages from that screen to be deleted, and then actually click the delete button, the messages still remain there and it is displayed that the messages were deleted. However untill you go out of that screen and back into manage the certain pop3 account, are the messages shown to be removed.
On the same not as that, say that you have mutiple spans of pages on the remote mail manage screen, and you navigate to the second set of listing of messages, and from there you select messages to be downloaded. After checking the messages you want to download and you are once again viewing the same set of spanned messages, trying to use the span navigation to go either to the next set of span messages or the previous, an error messages comes up that says " error, get method is not allowed".



For some reason when the option is specified to check mail on login, the pop3 window that pops ups to check external accounts, does not pop-up and check mail on login.

On occasion when checking pop3 accounts using the check mail button, say it finds that there are 30 messags and its on 1 of 30, after so long it gets to a number say 7 of 30 and stops. Repeating this over and over again it continues to stop on the 7th message. If you go into manage pop3 and delete them all that are listed, and recheck mail, and say you have a few new messages, It grabs them on completely and makes the announcement, "you have new mail".

thanks for your time.
Quote Reply
Re: [goonz] questions In reply to
There's actually a bug in the pop_remote.htm template:
Code:
--- gmail/data/templates/brewt/pop_remote.htm 2004/08/08 08:54:47 1.16
+++ gmail/data/templates/brewt/pop_remote.htm 2004/08/19 21:34:00 1.17
@@ -146,19 +146,19 @@
<tr>
<td>
<input type="hidden" name="msgs_delete_which" value="checked">
- <input type="submit" name="do=pop-manager-delete;do=pop-manager-list" value="Delete"><br>
+ <input type="submit" name="do=pop-manager-delete" value="Delete"><br>
</td>
<td>
<div align="right">
<input type="hidden" name="msgs_status_which" value="checked">
- <input type="submit" name="do=pop-manager-change_status;do=pop-manager-list" value="Mark as"> <select name="msgs_status"><option <%if msgs_status eq 'downloaded'%> selected<%endif%>>downloaded</option><option <%if msgs_status eq 'not downloaded'%> selected<%endif%>>not downloaded</option></select><br>
+ <input type="submit" name="do=pop-manager-change_status" value="Mark as"> <select name="msgs_status"><option <%if msgs_status eq 'downloaded'%> selected<%endif%>>downloaded</option><option <%if msgs_status eq 'not downloaded'%> selected<%endif%>>not downloaded</option></select><br>
</div>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="msgs_download_which" value="checked">
- <input type="submit" name="do=pop-manager-download;do=pop-manager-list" value="Download to"> <%folders_select%><br>
+ <input type="submit" name="do=pop-manager-download" value="Download to"> <%folders_select%><br>
</td>
<td>
<div align="right">

In Reply To:
For some reason when the option is specified to check mail on login, the pop3 window that pops ups to check external accounts, does not pop-up and check mail on login.
You may have a popup blocker which is preventing it from opening.

In Reply To:
On occasion when checking pop3 accounts using the check mail button, say it finds that there are 30 messags and its on 1 of 30, after so long it gets to a number say 7 of 30 and stops. Repeating this over and over again it continues to stop on the 7th message. If you go into manage pop3 and delete them all that are listed, and recheck mail, and say you have a few new messages, It grabs them on completely and makes the announcement, "you have new mail".
Is the message a large message? With large messages, it will seem like it's stuck there, but if you let it finish downloading it will complete eventually.

Adrian