Test of the new forum email

We made a change to the template, let's see how it looks.  Let us know what
you think.

That is odd. I'm seeing it in the new format:

Similar Messages

  • How much longer before we get the new BT Email?

    Sorry if this has already been covered elsewhere (I did look but couldn't immediately see anything similar) but I am getting thoroughly fed up of waiting for the change to the new BT Email. As my wife's account was hacked back in February, I was initially pleased to see the announcement that BT was to sever its connection with Yahoo and provide its own Email service, hopefully more secure.
    But that was at the end of May, and we're still waiting! We've been told repeatedly since July that the way we log in to BT Email would be changing, but the halfway house currently in place for most people is just a pain in the butt. Perhaps BT should have ensured that it had a viable alternative ready to roll before making its announcement?

    barnpiece wrote:
    Does any normal (i.e. non trial) customer have it yet? I've seen screen shots but guess they were from people testing it. 
    New (non Yahoo) BT Mail addresses have been able to be created from My BT by at least some existing customers for a few months now.
    Check "My Extras" in "My BT".
    Oliver.

  • Difference between the TABs  "All Content" and "Discussions" on the new forum?

    Hi,
    Does anyone know the difference between the TABs  "All Content" and "Discussions" on the new forum?  They seem to be the same.  I'm confused.
    Petey

    Petey,
    Though I was part of the forum update beta, there was some that we could not effectively test, plus some aspects (like "Like"), that some liked, but others did not. That sort of thing happens.
    Also, now that we have the full version, and all servers are synced, there will probably be things that the beta testers did not get to experience. We will all be learning, in the process too. Also remember, much of the new forum software was provided by Jive, and though many of us commented (pros and cons), only so much could be addressed. It was not quite like doing a beta on Adobe software, as there was a complete, separate layer in between.
    So far, what I see looks close to what we saw a few weeks (months?) ago. Now, I need to really put the real software through its paces, to see what got changed from then, until now.
    Good luck,
    Hunt

  • Welcome to the new forums

    Welcome to the new forums for GroupWise 2014. You can find more information about GroupWise 2014 at http://www.novell.com/products/groupwise/
    Here you can ask questions, share experiences, and talk to others about your 2014 experiences and/or get the information you need about upgrading to this new version of GroupWise.
    Thank You for participating with us in this community and sharing your knowledge/experiences!

    Forums,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Is the new forum harder to navigate?

    I haven't been here in a few months. For years in was my regular stop 4-5 times a day.  Is it me or is the new forum very confusing and a real hassle to navigate?  I mean it was a real pain just to post this!

    gjmnz wrote:
    Does any know what the difference is between the Discussions Tab and the All Content Tab? Apart from one shows which threads you have viewed and which ones have been updated. Is it a double up for nothing?
    There's a forum for discussing the forum... kinda meta:
    https://discussions.apple.com/community/using_apple_support_communities
    I started a thread asking that very question: "What is the difference between 'All Content' and 'Discussions'"
    The answer is just as you said, double up for nothing:
    https://discussions.apple.com/thread/3000868

  • Can't paste onto the new forum...

    For some reason I can't paste anything into the new forum, which is rather annoying since typing out log files is a bit tedious. Anyone know how to fix this?

    Don't know, do you get any errors? Perhaps you can't paste because you didn't copy something first? How old is your keyboard?
    I do know that your question probably will end up here:
    https://forums.oracle.com/community/developer/english/technology_network_community/community_feedback_and_suggestions_(do_not_post_product-related_questions_here)

  • Love the new forums... but

    love the new forums... but hate the performance.  Keep in mind my internet connection is 20MB/S download speed, there are times the pages wont even finish loading and you have to stop and reload again and/or very slow loading times.  Of course, there are times the performance is as expected, but rarely.  I hope Adobe plans to support the forums with better hosting.

    jon@cmiwebstudio wrote:
    love the new forums... but hate the performance.  Keep in mind my internet connection is 20MB/S download speed, there are times the pages wont even finish loading and you have to stop and reload again and/or very slow loading times.  Of course, there are times the performance is as expected, but rarely.  I hope Adobe plans to support the forums with better hosting.
    As an od adage says: "Don't feel like the Lone Ranger".
    which means everyone and his , brother, sister, Aunts, Uncles, mothers's and Father, and cousins on the Acrobat forums are complaing about the Speed.
    There is really we as Users of the Forums can do about it other than complain and hope adobe will do something about it when they get finished with their easter holiday. Maybe that will be before their 4th of July vacation.

  • The new forum software

    Folks,
    Lets take a vote. Do you just love (10) or utterly despise (-10) the new forum software?
    -8
    Against
    1. It's kitchy.
    2. It's buggy.
    3. Source code is HARDER to read than ever.
    4. They should have adopted wiki markup.
    For
    Ummm. RTF is kinda cute, I suppose.

    i like the look and feel, but i have to agree that the speed is not wonderful.
    of course i have a lot more tolerance for slow these days, since i became
    a full time DBA and some of our runs literally take days.

  • I like the new forum

    i havent been able do any programing for over a week
    i came back and see the new forum
    my question is how would i convert this to a applet
    class Art {
    Art() {
    System.out.println("Art ");
    class Drawing extends Art {
    Drawing() {
    System.out.println("Drawin");
    public class Cartoon extends Drawing {
    Cartoon () {
    System.out.println("Cartoon");
    public static void main(String[] args) {
    Cartoon x = new Cartoon();

    Hello xlightwavex,
    To convert your application into an applet you need to create a class that extends the java.applet.Applet class. Below is the complete applet version of your application Cartoon.
    class Art {
    Art() {
    System.out.println("Art ");
    class Drawing extends Art {
    Drawing() {
    System.out.println("Drawin");
    class Cartoon extends Drawing {
    Cartoon() {
    System.out.println("Cartoon");
    public class CartoonApplet extends Applet {
    public void init() {
    Cartoon x = new Cartoon();
    However, like your application, this applet sends all output to the system console (the DOS window in Microsoft's Windows for example). If you want the output on the applets panel itself you will need to update each class and replace the System.out.println methods. The applet below shows how you might do this, this is just one out of the many ways you might do it:
    import java.applet.Applet;
    import java.awt.*;
    class Art {
    public String toString() {
    return( "Art.");
    class Drawing extends Art {
    public String toString(){
    return( "Drawin, " + super.toString());
    class Cartoon extends Drawing {
    public String toString() {
    return( "Cartoon, " + super.toString());
    public class CartoonApplet extends Applet {
    Cartoon x;
    public void init() {
    x = new Cartoon();
    public void paint(Graphics g) {
    g.drawString( x.toString(), 25, 25);
    The output of this program verifies that a Cartoon object, Drawing object and Art object have been constructed. The output is show below, which appears on the Applets Panel:
    Cartoon, Drawin, Art.
    Is this output just helping in debugging, or is it vital to the applet? If it is for debugging purposes, the System.out.println method is a good way of doing it. If not, do you need the output to appear antwhere in the applet? If so, it is hard to create output from the object of which other object can inherit - it is not the usual way of doing it. Otherwise, the above CartoonApplet is a good way of getting information about an inheritance model.
    I hope this helps.
    Best reguards
    -Marek.

  • Photos didn't transfer with the new/reply email - how to recover them?

    Was sent these fabulous photos and when my co-worker replied to him, the photos didn't transfer with the new/reply email, unfortunately she deleted the original email.  I found this info instead of the attached photos - any idea how I can open these or get back the photos without asking him to resend?
    Thanks!
    <01.jpg><02.jpg><03.jpg><04.jpg><05.jpg><06.jpg><07.jpg><08.jpg><09.jpg><10.jpg> <11.jpg><12.jpg><13.jpg><14.jpg><Gerrits 01.jpg><Gerrits 02.jpg><Gerrits 03.jpg><Gerrits 04.jpg><Gerrits 05.jpg><Gerrits 06.jpg><Gerrits 07.jpg><Gerrits 08.jpg><Gerrits 09.jpg><Gerrits 10.jpg><Gerrits 11.jpg><Gerrits 12.jpg><Gerrits 13.jpg><Gerrits 14.jpg><Gerrits 15.jpg><Gerrits 16.jpg><Gerrits 17.jpg><Gerrits 18.jpg>Bev 

    I had a similar problem just last night. This is how i fixed it:
    http://discussions.apple.com/thread.jspa?threadID=1085675&tstart=25
    Just look for my last post in the thread.
    I did have access to a full daily back-up of my hard drive.
    I hope this helps

  • HT4864 I'm confused with the syncing of email with Icloud.  Do I need to use the new Icloud email account instead of my existing outlook accounts?

    I set up Icloud and an icloud email account in outlook 2010.  The calendar dates transferred to my Iphone but nothing of the emails.  The only email that go to my iphone are those that go to the new Iphone email account in outlook.  Do I have to use the Icloud email account instead of my existing outlook accounts in order for my email to sync?  If not what can I do to get my outlook email to sync with my iphone? Thanks.

    iCloud only "syncs" data in the iCloud account, not data in other external accounts such as Gmail, Yahoo, etc.  If your email, contacts and calendars are hosted by another external account, such as Gmail/Google, you may want to not sync this data using iCloud as you would have import it all to the iCloud account in order to do so.  Instead, add your external account to your iOS devices and in Settings>Mail,Conacts,Calendars>Add Account and turn on contacts and calendar syncing with your external account.

  • What About Moderators in the New Forum?

    Read the spam thread for awhile and you will see that moderation works well in these webx forums
    You will also see messages concerning the LACK of moderation over in the cfusion side of things
    Will the new forum software/structure allow for "this" moderation to continue, or will it fall away to "that" style of non-moderation?

    Actually, on that note: how does one double-check that they've managed to link their user here with an Adobe ID?
    The first umpteen dozen times I tried to do this the login to the Adobe ID would time out -- something I frankly get quite a lot when I try to login anytime with my Adobe ID. I'm not sure what's going on there.
    I just tried to link my users here a few minutes ago and got the same time out. So I opened another window and tried logging in manually somewhere else. On my fourth or fifth try (after double-checking the password with the 'forgot your password?' function) it went through. Satisfied I had the right user/pass combo, I went back to the timed out page and hit fresh. It came up with some window asking to confirm I wanted to login with my (correct) Adobe ID and I said 'confirm'. So I *think* I'm linked, but I don't see any visual cue. At least, it doesn't ask me when I login anymore.
    At any rate, is there way to verify it at our end? It'd be nice to have that peace of mind. Also, it'd be nice if I could find out why I timeout 90% of the time I try to login with my Adobe ID -- is it just that overloaded with users logging in?

  • Hi .... I have created an account and do not receive the new apple email-lul confirmation

    Hi .... I have created an account and do not receive the new apple email-lul confirmation

    Hi Anghel,
    If you are having issues creating an Apple ID, you may find the following article helpful:
    OS X Mavericks: Create and use Apple IDs
    http://support.apple.com/kb/PH14326
    Regards,
    - Brenden

  • MOVED: Thanks for the new Forum!

    This topic has been moved to Forum Info & News corner.
    Thanks for the new Forum!

    I too have benefited from good advice on my MSI K8n Neo2 mb questions.  The members here are knowledgable and polite.  Questions asked nicely are answered by good suggestions.  Thanks to MSI for sponsoring such a useful owner's forum.   

  • Hey regulars, same names in the new forum?

    hey, is everyone keeping the same names come monday with the new forums?
    if you've got something new, share it here so we know who we're dealing with.
    i'm the same, dave milbut.
    if the lights go dark and don't come back on, well, it's been great getting to know you all and learning from you! you're the best bunch of pros a guy could wish to learn from!
    cheers, dave (aikodude at yahoo dot com)

    dec9 wrote:
    My name changed from David E Crawford to dec9 Everything seems to be running real smooth and quick on my computer.The color choice is nice and even a spell check too boot and it works!!
    ah! i was trying to figure out who dec9 was! the spell checker works, but i notice that the edit box for the forum does something that DISABLES the built in speeel [sic] checker for firefox... the one that gives the little red line under misspelt words... that's kinda annoying...
    dave

Maybe you are looking for

  • ADF Database lock and Refresh

    I have two issues regarding ADF. Database lock : The problem : In most test-cases the database lock functionality is working correctly in my app. We have two users working on the same dataset trying to store at the same time, one user get to store, a

  • Opening link in new window from cfgrid

    Hi all, I am using the following code to create a link to a more info page for the selected row of data: <cfinput type="button" name="MoreInfo" value="More Info" width="100" tooltip="Click here to view more information on the selected data" onClick="

  • Windows Media Technologies

    O/S - Windows 7 Professional 64 bit I was able to almost completely install Adobe Photoshop Elements 3.0.  The Windows Media Technologies component did not install.  Is this a crucial component? Regards, Fred

  • XML Schema Support

    Hi, is it possible to load the xschema.jar from the Oracle 9i XDK into an Oracle 8i database, in order to support schema validation from an existing application ? Thanks, Henry

  • What is ' OSStatus error 5401 '?? try to load a video, doesn't.  OS 10.6.8  have flip for / WMV

    I'm no good at 'puter stuff , this pretty much just needs to work.  note - I have in the past downloaded videos from the same site, no problem.  did  upgrading OS or quicktime or something screw things up ?  what to do ?  also has said,  OSStatus 120