On 09/27/12 08:57, Frank Bonnet wrote:
Hello
Is there an option to hide recipients addresses when there are a lot when reading a message ?
Thank you
Frank,
This bug has already been addressed (TRAC #1488590) for some future release. I'm not certain exactly how it will be implemented, nor when the next release (0.8.2 or 0.9) will be released. Since I had numerous users suffering from this, I found and implemented a fix for 0.8.1.
Edit <rc-root>/skins/larry/mail.css, find the following block in the message view section:
#messageheader, #partheader, #composeheaders { position: relative; padding: 3px 0; background: #f9f9f9; background: -moz-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e9e9e9)); background: -o-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -ms-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: linear-gradient(top, #fff 0%, #e9e9e9 100%); }
...and replace it with the following two blocks:
#messageheader, #partheader { position: relative; padding: 3px 0; background: #f9f9f9; background: -moz-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e9e9e9)); background: -o-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -ms-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: linear-gradient(top, #fff 0%, #e9e9e9 100%); max-height: 120px; width: 100%; overflow: auto; }
#composeheaders { position: relative; padding: 3px 0; background: #f9f9f9; background: -moz-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#e9e9e9)); background: -o-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: -ms-linear-gradient(top, #fff 0%, #e9e9e9 100%); background: linear-gradient(top, #fff 0%, #e9e9e9 100%); }
I had to split the composeheaders out separately as the "fix" I implemented had minor display issues when composing in Firefox. This has made my users happy, and will be OK until the next release.
Hope this helps.
-- Arne Berglund System Administrator, Internet Services Lane Education Service District Eugene, OR ____________