How not to group emails by subjects on blackberry on Q10

Hi,
Why do emails of the same subject show as different emails from each person who replies?
In the old BlackBerry I was using I used to get all emails in 1 thread now I have different emails.
I use Google corporate account for my company
Pls help someone
Thanks

Hey hermitsethi
Welcome to the BlackBerry Support Community Forums.
Setting your Z10 to display email threads in conversation view instead of appearing as single messages is a great way to manage your messages. To turn on conversation view, complete the following steps:
1. In the BlackBerry Hub, tap the action key (3 dots button located in the button right corner)
2. Tap Settings followed by Display and Actions
3. Set Display Style to Conversation from Single Messages
4.Tap Back to save your changes
I look forward to your reply!
Goose947
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Like! for those who have helped you.
Click Accept as Solution for posts that have solved your issue(s)!

Similar Messages

  • How to send group emails from ipad

    How to send group emails from ipad

    Thanks.  So matters haven't changed.  Ipad and iohone systems still not make use of the groups created in OSX Contacts, although one can "see" the groups synced through iCloud.  They just do not function as real distribution lists in Mail.
    With the Mailshot app, one creates Mailshot groups with Mailshot group name.  It's as smooth as a work around can get.
    Silly that Apple iOS folks never got around to connecting the contact groups now listed in iOS Contacts through iCloud syncing to also be fully functional in iOS Mail for the purpose of group emailing. 

  • How to enable group email accounts

    Hi all,
    I have spent a while fiddling with (and breaking) my OSX Lion 10.7.4 Server install trying to get group emails working. I would just like to share how I did it.
    Follow the below how to.
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #            */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    The only additional thing I had to do with Lion Server 10.7.4 was add hash:/etc/postfix/group_aliases to the alias_maps AND alias_database in /etc/postfix/main.cf then run "newaliases" and "postfix reload"
    Hopefully this helps the next person to get it all running quicker than I did
    Cheers
    Ryan

    Hi Ryan, yeah 10.7.4 Lion Server - mail is swtiched on although we haven'y migrated to it yet (i do have the accounts setup though)
    Script:
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #                 */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    I've gone through it a few times and can't see any differences to the one you posted so am at a loss as to why its not working..
    Thanks
    Phil

  • How to get group email addresses in BCC on iPad?

    Have recently bought iPad mini, have MacBook so synced. Cannot get group email addresses to show up in iPad addresses book, and can't get them into bcc on mail?

    That is because groups cannot be added in the iPad mail app, as bizarre as that seems. That functionality does not exist. You cannot create groups in the contacts app on the iPad either. Yoy can create them in iCloud.com but not on the iPad itself. You just have to add the email addresses one at a time by tapping the blue + button and selecting the contact from the contacts window that will pop up.
    There are apps that let to email to groups .....
    MailShot
    https://itunes.apple.com/us/app/mailshot-group-email-done/id410279354?mt=8
    Group Email!
    https://itunes.apple.com/ca/app/group-email!-mail-client-attachments/id380690305 ?mt=8

  • TS3276 I can not send group emails on my new Macbook air. I need to for my job. Help.

    I cannot send Bcc group emails on macbook air, Maverick. Any ideas?

    create a group in contacts.
    create a new email in Mail.app
    in the View menu in Mail, check the Bcc address field option
    in the Bcc box in your email, type in the name of the group and then a comma.

  • Osx server 3.1 not distributing group emails

    I have noticed that my email server (version 3.1) stopped distributing group emails. It was happening with the previous version and I thought the update would have solved this small nagging problem.

    Hi,
      I finally got it to work.
    In Server Manager, I switch off Mail
    Switch off DNS
    Switched off Open Directorz
    cd /Library/Server/Mail/Config
    mv MailServicesOther.plist MailServicesOther.plist.bk
    Turned of mail and everything worked with 'enable virus filtering'
    Mike

  • OS4 email threading groups emails by subject from different people

    Currently using iPhone 3GS with OS4.
    Have email threaded turned on.
    Gmail synced via exchange.
    Gmail in actual browser has various threads for multiple contacts separated bit all with the same subject "2010".
    Initially for the last week iPhone handled this the same way but suddenly today they all got grouped in the same thread. Is there a way to fix this? Will this be fixed in future releases?

    remove the email address from your address book.

  • How to set group email

    Where &amp; how can I set up a group list of email address in order to send one message to a group?

    I think Mailman is probably the easiest way to get a mail list (group mail) setup.  It's in Server Admin --> Mail --> Settings --> Mailing Lists.  You can open up the users and groups list and just drag people into the list.  It'll setup a Mailman box first, which needs to be there, and then you can setup whatever mailing lists you need.  Emails to these addresses are formatted as <list_name>@your_server_domain.com.

  • How to send GROUP email in Mavericks?

    Sending email to Contact Groups in Mail doesn't appear to be working in Mavericks anymore.  We use to be able to type the Group name, click enter, then all addresses appear.  Now it just disappears with no email addresses added.

    Steve, I just saw a post by another person that provided a work around which works for me:
    A workaround for sending an email to a group in Contacts, might be right-clicking on a group and choosing Send email to "{group name}".

  • How do I group emails together for a club?

    How do I creat a folder of emails for a club of over 30 members?

    You press edit and select them all and take it from there

  • Mail Program not sending group email

    I set up a message group months ago with 33 addresses. Worked fine. Suddenly a few weeks ago, all members of the group reported not getting the messages, but I was not getting any bounce-backs. I checked with GoDaddy where I have an Exchange service. They tested and found that the messages I was sending were being received by their server, not blocked. Yet this group is still not receiving my messages! Simultaneously, I have another message group set up with about 30 addresses. It works fine! I am mystified. Any ideas?

    You may get a faster, more targeted response by posting in the OSX 10.4 forums here:
    Mac OS X v10.4 Tiger

  • How can I group emails by sort and thread at the sametime?

    I like emails sorted by date. I know when threaded the dates are all mixed up. Yet, outlook allows me to do this and it is very convenient.

    View menu (Alt+V) > sort by > Threaded

  • Can not access my email address on my Blackberry

    I need your assistance, i just upgraded my Bb Storm 9530 but since then i have not been able to access my email. I keep getting error message "Blank User name. Type a valid username"

    What kind of email is it?

  • How do I create, and send a group email on my iPhone?

    How do I create, and send a group email from my iPhone 4?

    How to send group email without additional APP
    Just spent an hour on ichat.  Long and short....can't send group email.  The group name appears in the TO: line, but if you click on the group name, only the first email address is blue..the rest are black and will not get the email.  We tired using the CC and BC lines...same result. 
    However here is one solution:
    I sent one email with each of the group (we are only 9 ) in the TO: line.  I included my primary email.  When it came to the iphone, i moved it to one of the subfolders.  (Each account you may have has a list of the inbox at the top and Account at the bottom.  ... that is where you can access the subfolder)
    I moved the email with all names to that subfolder.  I can then, open it ...do a relpy to all and just change the message and subject line.   It is cumbersome, but it does work.  I really think Apple, a company committed to ease of use, needs to review this flaw.  I suspect it may be a bandwidth economy ....  and i feel the pain of the providers...but you did create the beast. 

  • How do i create a group email?

    How can I create a group email?

    The native mail app in iOS does not support group emailing directly. You have a couple of options:
    Search the app store for an app that does. there are a few.
    Create a contact with multiple email addresses in the same email field (separate with semicolons). There is a limit on the number of characters the field will contain, and how many addresses this will work on don't recall exactly what that limit is, however). #1 is probably your best bet.

Maybe you are looking for

  • Unable to open Form Repsonse File

    Hello, I am unable to open a response file to one of my distributed forms. I have made no changes to my system or the file. I get the following error "To view the Flash technology content in this pdf file, please install this version of Flash Player

  • Windows 7 64-bit activation key.

    I was running Windows 7 Home Premium until 1 day I booted up and the laptop failed to boot. 'No bootable media found' (Or something like) So I put in a new hard drive, re-imaged with my backup from an external USB drive, and now we are back in busine

  • For compression - Acrobat X Pro vs PrimoPDF

    I need an application that I can use to take an existing PDF file and compress it. Right now, I cannot afford Acrobat X Pro. I have read that PrimoPDF is a free alternative. Can anyone shed any technical or compatibility light as to why I should not

  • Revolution won't open attachments

    We have two Revolutions with the same problem. Neither will open any attachment that comes in email. The exact error wording you get is "attachment is too big to download." This happens on pictures, pdf, word, excel files, nothing will open. This pro

  • How to delete an event, but not the photos

    hello. i imported a few photos from my iphone 4 to iphoto and it created an event. i dragged and dropped those photos to a specific album on iphoto which is the only place i want them. i then deleted the newly created event but the photos disappeared