Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Beta 4 - Remote Mail

Quote Reply
Beta 4 - Remote Mail
I am having a problem removing some of my remote mail accounts. I check the box to the left of the account and then click the "Trash Selected" button at the bottom and I get this message:

No POP account ID was specified.

Am I doing this wrong? I am in the default template.

Thanks
~Charlie


Quote Reply
Re: Beta 4 - Remote Mail In reply to
OK, I was able to get it to work in the "Simple" template. I looked at the html and this is what I found:

Here is the checkbox for the Simple Template:
<input type="checkbox" name="pop_accounts_id" value="2">

Here is the checkbox for the Default Template:
<input type="checkbox" name="pop_accounts_id" value="" align=top>

I checked the templates and found this:

Simple Template:
<input type="checkbox" name="pop_accounts_id" value="<%pop_accounts_id%>">

Default Template:
<input type="checkbox" name="pop_accounts_id" value="<%if pop_account_id%><%pop_accounts_id%><%endif%>" align=top>

I removed the <%if pop_account_id%> and the <%endif%> from the Default template and it fixed the problem.

Thanks
~Charlie

Quote Reply
Re: Beta 4 - Remote Mail In reply to
Oops, missing an 's' there. That should of course be:

<%if pop_accounts_id%><%pop_accounts_id%><%endif%>

Although I don't think the if tag is even neccessary. I'll take a look.

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: Beta 4 - Remote Mail In reply to
Thanks Alex. That did the trick.

~Charlie