Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#1485595 closed Bugs (worksforme)

identities not displayed

Reported by: danielkr Owned by:
Priority: 3 Milestone: 0.2-stable
Component: User Interface Version: git-master
Severity: major Keywords: identities
Cc: danielkr@…

Description

hi,
i've checked out roundcube from the svn (r2107) and have an issue with the identites:
1) the list in the settings-identities-tab is empty (but there are >1 in the db for the account i am using)
2) clicking on 'add' does not display any new contents, so there are no forms or inputs or something
3) when i want to write an email the sender-input is empty, too

i hope you can fix this, so i can use my identites again :)

thanks,
daniel

Change History (12)

comment:1 Changed 4 years ago by alec

  • Milestone set to 0.2-stable
  • Resolution set to worksforme
  • Status changed from new to closed

Check identities_level option setting, also clear browser cache. Works for me.

comment:2 Changed 4 years ago by danielkr

  • Cc danielkr@… added
  • Resolution worksforme deleted
  • Status changed from closed to reopened

i've tried it with multiple browsers and all had the same problem.
the identitieslevel is set to 0.
and i even can't select an identity for sending emails.

i forgot to say that i upgraded my roundcube from 0.1-rc2 but the upgrade-script had no warnings/errors and the sql-update also went well.
i use postgres and there are definitely some entries in the table

comment:3 Changed 4 years ago by alec

And no errors in logs/errors? Did you update of database schema? Check identities table structure.

comment:4 Changed 4 years ago by danielkr

i updated the database using the postgres.update.sql

this is how it looks:

                                      Table "public.identities"
     Column     |          Type          |                         Modifiers
----------------+------------------------+------------------------------------------------------------
 identity_id    | integer                | not null default nextval(('identity_ids'::text)::regclass)
 user_id        | integer                | not null
 del            | integer                | not null default 0
 standard       | integer                | not null default 0
 name           | character varying(128) | not null
 organization   | character varying(128) |
 email          | character varying(128) | not null
 reply-to       | character varying(128) |
 bcc            | character varying(128) |
 signature      | text                   |
 html_signature | integer                | not null default 0
Indexes:
    "identities_pkey" PRIMARY KEY, btree (identity_id)
    "identities_user_id_idx" btree (user_id)
Foreign-key constraints:
    "identities_user_id_fkey" FOREIGN KEY (user_id) REFERENCES users(user_id) ON UPDATE CASCADE ON DELETE CASCADE

and this is an example from the table:

 identity_id | user_id | del | standard |  name   | organization |    email     |  reply-to    | bcc | signature | html_signature
-------------+---------+-----+----------+---------+--------------+--------------+--------------+-----+-----------+----------------
           1 |       1 |   0 |        1 | My Name |              | my@email.com | my@email.com |     |           |              

neither my lighttpd-log, postgres-sql-log nor the roundcube-log have any errors regarding this issue.

comment:5 Changed 4 years ago by tensor

What browser?

comment:6 Changed 4 years ago by danielkr

i used safari 3.2 and firefox 3.0.4.
i am not sure, what the problem was. i reinstalled roundcube and everything works fine now.

comment:7 Changed 4 years ago by alec

  • Resolution set to worksforme
  • Status changed from reopened to closed

comment:8 Changed 4 years ago by the_glu

  • Resolution worksforme deleted
  • Status changed from closed to reopened

DOSEN'Tworksforme

I can list, edit, but no add. No errors in log or whatever.

There is a missing </div> entitie when I want to add an identitiy

Edit :

<td class="email">XXX@…</td>
</tr>
</tbody>
</table>

</div>

<p id="listbuttons">
<input type="button" class="button" id="rcmbtn108" onclick="return rcmail.command('add',,this)" value="Nouvelle identité" disabled="disabled" />
</p>

<div id="identity-details">
<div id="identity-title">Modifier l'élément</div>

Add :

<td class="email">XXX@…</td>
</tr>
</tbody>
</table>

<p><input type="button" class="button" id="rcmbtn108" onclick="return rcmail.command('add',,this)" value="Nouvelle identité" disabled="disabled" /></p>

<div id="identity-details">
<div id="identity-title">Nouvelle identité</div>

comment:9 Changed 4 years ago by alec

  • Resolution set to worksforme
  • Status changed from reopened to closed

That tag is needed. The page is valid, checked with w3c validator. So, I don't see what's your point. Closing, as this is working for me and issue requestor.

comment:10 Changed 4 years ago by the_glu

The tag is needed, but the tag is missing when I want to add an identitiy, and make the page invalid, move the 'new identity' to the identities list, and hide the form to add an identity.

comment:11 Changed 4 years ago by alec

Are you sure, you are using default skin files from svn-trunk? Works for me with FF3 and Opera9.6. There's no missing tag.

comment:12 Changed 4 years ago by the_glu

Dosen't happen anymore, I clear my Fx cache ;)

Note: See TracTickets for help on using tickets.