Sent items are stored in inbox... driving me mad! Please help..

This used to wind me up about the blackerry. I don't want my sent sms messages to appear in the my inbox, its confusing. I like my inbox and my outbox to be seperate. Its the same with email. Every time I reply to a message, I get an email a minute later...I open it, and its the message I just sent off...popping up in my inbox. How do I stop this from happening, both with email and sms...does an outbox even exist on this device?!

Look under the Settings then Mail. There is option to toggle on or off BCC yourself.
However, if you are using GMail, GMail does it because of the way they do their threaded emails. There is an option someplace in GMail to change that (or just switch to IMAP option).
As for SMS, not sure what you are talking about. SMS messages show as a conversation, white them, green you. It is just a history, there is no in or out box.

Similar Messages

  • UNKNOWN SYMBOL DRIVING ME MAD, PLEASE HELP!!!

    I have a symbol that has come up on my screen. It's a white box with a black dot inside and a red dot like the 'notification star' on it. It's in the same area as where you get your bbm, facebook, email, etc. notifications. I've tried going through all my apps and nothing is helping. It's driving me mad. PLEASE PLEASE HELP!

    Hi DivaAoife,
    Sounds like an update notification for BlackBerry App World. Do you have an email regarding an update? If not, you may be able to see the update notification in My World within App World.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Html:link not working in struts project driving me mad, please help...

    Afternoon all,
    Can anyone help me with an issue I'm having with my first struts project, I'm learning as I go.
    Anyway, I'm trying to create a bog standard hypertext link which passes a value back to a specified struts action. The flow of the application
    is as follows:
    1) search.jsp
    User enters a name and postcode to search on, then click submit
    2) searchAction
    Struts action 'search' is called and does the search in a back-end db.
    Each result found from search is created as a javabean (named resultsBean), and added to a list object. The list object is set as a request
    attribute named 'SearchResults'.
    The action is then forwarded on to another jsp page named results.jsp
    3) results.jsp
    The results.jsp page retrieves the list object from the 'SearchResults' attribute and loops through each entry
    in the list and converts each entry to the 'resultsBean' javabean object.
    Each resultsBean object has a getVirtualID method which stores a string value. This value is retrieved and a hypertext link is created which
    passes this value on to another struts action named 'select'.
    When this link is clicked on, the select struts action is called and the value passed as a parameter is retrieved.
    This is the part I can't get to work, I can't get the link to render properly. When I click the link the select action retrieves
    & lt;%= resultsBean.getVirtualID() & gt; as the value of the parameter 'vid' instead of the value stored in the getVirtualID method of the resultsBean.
    Listed below is the code from my results.jsp page. If anyone can help me get this to work I would be very grateful.
    Thanks in advance,
    Alex
    results.jsp code
    <%
       List searchResults = (List)portletRequest.getPortletSession().getAttribute("SearchResults");
    %>
    <div id="table_layout" style="width: 713px; margin: 0px 0px 0px 3px;">
      <div id="row">
        <div id="column"><img src='<%= response.encodeURL("/images/results.gif") %>' alt="" width="223" height="159" border="0" /></div>
         <div id="column" style="width: 30px;"></div>
         <div id="column">
          <div id="table_layout" style="width: 460px;">
            <div id="row" style="width: 430px; border-bottom: 1px solid #4e137d;">
              <div id="column" style="width: 155px;">Name</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" style="width: 130px;">Address</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" align="right" style="width: 120px;">References</div>
            </div>
    <% if (searchResults.size() > 0) {
           Iterator it = searchResults.subList(0, searchResults.size()).iterator();
           ResultsBean resultsBean = new ResultsBean();
           while (it.hasNext()) {
                resultsBean = (ResultsBean)it.next(); %>
            <div id="row" style="padding: 5px 0px 10px 0px;">
              <div id="column" style="width: 155px;"><html:link styleClass="results"  page="/select.do?vid='<%= resultsBean.getVirtualId() %>'" title="<%= resultsBean.getFullName() %>"><%= resultsBean.getFullName() %></html:link></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" style="width: 130px;"><%= resultsBean.getFullAddress() %></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" align="right" style="width: 120px;"><%= resultsBean.getReferenceIcons(portletResponse) %></div>
              <div id="column" style="width: 13px;"></div>
              <div id="column" style="width: 22px;"><input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;"></div>
            </div>
    <%     }
       } %>
           </div>
         </div>
      </div>
    </div>
    <br />
    <br />
    <html:link forward="/searchpage">Return to search page</html:link>

    If you have part of an attribute dynamic, you need to make the entire attribute an expression.
    ie instead of
    page="/select.do?vid='<%= resultsBean.getVirtualId() %>'"
    it has to be
    page="<%= "/select.do?vid=" + resultsBean.getVirtualID() %>"
    However for my approach, I would aim for zero scriptlets, and use the struts tags even more. For instance instead of an iterator, use the struts logic:iterate tag (or the JSTL c:forEach>
    Also instead of div tags, I would use html table tags - <table> <tr><td> etc etc. Thats what its for right?
    Here is at least some of it rewritten with struts tags.
    I left out the div tags so I could focus on the "important" stuff.
    <logic:iterate id="resultsBean" name="SearchResults">
      <html:link styleClass="results"  page="/select.do" paramId="vid" paramName = "resultsBean" paramProperty="virtualId">
        <bean:write name="resultsBean" property="fullName"/>
      </html:link>
      <bean:write name="resultsBean" property="fullAddress"/>
    <%= resultsBean.getReferenceIcons(portletResponse) %>
    <input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;">
    </logic:iterate>I'm not entirely certain what you are doing with that checkbox at the end. They all have the same name, but no value. You couldn't identify at the server end which one was clicked.
    Hope this helps some,
    evnafets

  • I tunes problem driving me mad - please help

    Hi, I've just got a new laptop and have installed i-tunes on it. I have copied all my music to the hard drive from my previous computer and i-tunes has has automatically placed all of the music in the i-tunes library. The problem is that for some reason the library is showing 3 copies of each song even though there is only one of each on the hard drive. i have tried removing i-tunes and reinstalling but it is still happening. i have looked through the i-tunes settings but can't work out why it is happening. i dont want to have to go through the library deleting songs as it would take forever...
    Has anyone else had this problem? any help would be greatly appreciated
    Thanks

    sometimes different songs are placed under one name and also it looks through multiple directories.try to single the folder out for music and then it might work
    hope i helped.

  • Airport Express (AX) not found after restart....driving me mad, please help...!

    Hello,
    I tried to search for this issue but never found the solution. In the meantime, it drives me mad......so please do respond if you know the answer.
    Here is the problem. I have a WDS setup for our home, time capsule as base and several airport extremes (AX) for the wifi net through the house. In addition there is one AX for iTunes and I have one setup for the printer. Untill last week everything worked just fine. However, after installing a new printer, the printer AX blinked amber. I performed a reset and went through the setup, my AirPort Utility found it right away. I followed the steps for setting it up to join my current wireless network (usb printer). However, after the message: "The settings for this AirPort Express have been successfully updated. You can close this window or wait for this AirPort Express to restart" , the AX restarted, I finally got a message telling me there was an error joining my network. So I closed the ultility, resetted the AX and went through the process again. Unfortunately, the same result. Tried to connect the old printer, same result. Tried another AX, same result. Tried connecting it with a LAN cable, same result. It all goes fine untill right after the restart phase. NExt the AX is not recognized.
    As nothing has been changed in the meantime, I have no clue at all what might be the problem. Anyone ????
    Looking forward to the answer, untill now, I have not been able to find a solution.
    Kind regards,
    Mark

    Mark,
    I am having the same problem.  I found this website, not sure if you have already given this a try.
    http://adamantventures.com/blog/airport-express-setup-troubleshooting/

  • FCP plays DVCPro HD - QuickTime does not - Driving me mad – please help-.

    Hello
    This is a follow on from a previous post. Trying to get DVCPro HD QuickTime file to playback on a MAC Mini. The file opens but the image is white and I occasionally get a dialog box informing me that a QuickTime component is missing.
    I have installed Final Cut Pro on to this MAC
    I have downloaded and installed the DVCPROHD components software from apple.
    From FCP I can do a custom export (File Export QuickTime Conversion) for DVCPro HD but the same option isn’t available if I try and do a custom export from QuickTime.
    I have done the same install on a G5 and all is well. Is it the Intel – Mac Mini that is causing the problem? Both MACs have 10.4.8 installed so I don’t think it’s a system thing.
    ?????..any advise is greatly appreciated.
    Sincerely
    D

    you answered yourself, give you the green star,
    http://forums.creativecow.net/cgi-bin/newreadpost.cgi?forumid=8&postid=914678&pview=t#head

  • All my sent items are not visible in outlook

    When I send email from my iphone I can't see it in sent items in my desktop pc's outlook 2013. However, all inbox items are visible. My OS is windows 8 pro.
    Thanks

    Looking at the .mac mail folder, there are no black triangles, I have inbox, drafts and sent (and trash) icons.
    I tested the .mac mail (I know I keep saying "this site" but I don't know what else to call it?), and using this one it does keep a copy of the sent items. BUT using the Mail (the stamp icon mail) copies of sent items are not saved.
    I want to use the Mail one, because you can choose fonts and all that other stuff, which is why I even purchased the year membership! (otherwise I would just stay with Yahoo mail).
    I really don't have a clue about this stuff and I appreciate you taking your time here.

  • My sent items are not in the sent folder

    I went to Preferences and chose to have sent items in the folder but they are not there. Anyone have any suggestions?

    Looking at the .mac mail folder, there are no black triangles, I have inbox, drafts and sent (and trash) icons.
    I tested the .mac mail (I know I keep saying "this site" but I don't know what else to call it?), and using this one it does keep a copy of the sent items. BUT using the Mail (the stamp icon mail) copies of sent items are not saved.
    I want to use the Mail one, because you can choose fonts and all that other stuff, which is why I even purchased the year membership! (otherwise I would just stay with Yahoo mail).
    I really don't have a clue about this stuff and I appreciate you taking your time here.

  • Changing where the sent messages are stored

    Hi, I was wondering is there any way you can change where the sent messages are stored. I have switched from a few programs.. and there is a 'sent' folder and ' sent messages' folder on my folder list in addition to that of what mail is putting them in. I just want one folder.

    Sounds like you are accessing an IMAP type account.
    If so, is this the only email account and account type you are accessing with the Mail.app?

  • TS3276 OSX Mavericks Mail : I configured Yahoo! id in OSX mail, I noticed that sent mails are stored on Mac and not getting stored on Yahoo! sent (server) although I gave the option to store on server in preferences, is there any solution?

    I configured Yahoo! id in OSX mail, I noticed that sent mails are stored on Mac and not getting stored on Yahoo! sent (server) although I gave the option to store on server in preferences, is there any solution?

    Found solution of forum...

  • My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    My App Store won't allow me to download any apps. It says such and such app is unable to download try again later  every time. I have enough storage all my devices are up to date on all updates  please help

    I am a librarian at a 1:1 iPad school and we are having this problem with all ~3000 student iPads as well at ~300 teacher iPads.  This is extremely frustrating.  I have tried suggested fixes found on other discussion boards but none have worked.

  • TS1398 my wi-fi has full bars, says i am conected but never puts a check by the name of network,i have reset settings and it still does the same thing. i dont think it is my wi-fi because my other computers are able to get on just fine. please help.

    wi-fi has full bars, says i am conected but never puts a check by the name of network,i have reset settings and it still does the same thing. i dont think it is my wi-fi because my other computers are able to get on just fine. please help.

    There are two ends to a wifi network. Try rebooting your router.

  • I have an ipod touch 4g. I did not have wifi for three days and when I came home my friends said they texted me when i didnt have signal. The messages i received when i did not have signal are not showing up. Can someone please help me?

    I have an ipod touch 4g. I did not have wifi for three days and when I came home my friends said they texted me when i didnt have signal. The messages i received when i did not have signal are not showing up. Can someone please help me?

    You said "The messages i received when i did not have signal are not showing up."
    How do you know received them?
    If the sender got a message that the Messagers were not delivered than they were never delivered and the only way for you to get them is for the sender to resent them

  • I just got my iphone and i want to get all my apps and music from my ipod onto my iphone. the only problem is that my itunes is not recognizing my iphone in the devices. in fact there are no devices at all listed. Please help!

    I just got my iphone and i want to get all my apps and music from my ipod onto my iphone. the only problem is that my itunes is not recognizing my iphone in the devices. in fact there are no devices at all listed. Please help!

    See either:
    iPhone not recognized in iTunes for Mac
    iPhone not recognized in iTunes for Windows

  • Currently unable to sync songs to iTunes. All my options are correct and nothing is working. Please help me lol

    Currently unable to sync songs to iTunes. All my options are correct and nothing is working. Please help me lol

    Hi,
    Try to contact Maximuscards.com support, They have 24/7 customer support, Hopefully your problem already solved.

Maybe you are looking for

  • Windows 8.1 system with new Office 2013 install not pulling down any Office 2013 updates from my SCCM 2012 SP1 server

    Hi, I've just setup a new Windows 8.1 system and added to my SCCM 2012 SP1 server and all is good and it pulled down all the correct Windows updates and pulls down automatically the FEP updates that are distributed from SCCM 2012 daily.  I just insta

  • NAS drive recommendations for use with MPB, PS3, APX and time machine?

    Hello, I am looking to get a 1TB NAS drive and then partition about 400mb for time machine and the other 600mb will basically serve as a media/itunes server. Wondering what recommendations you have and anything to look for in the product details? Is

  • Flash player crash in IE and Firefox

    Hi, I develop a Web site in flash and I want to optimize it for the flash player 9 and later version. But I have a crash problem in flash player 9 and 10 version in IE 7 and Firefox 2 and 3 except the very last version (10.0.22.87) I also have the pr

  • IPSEC pass-thru

    Does the newest IOS allow IPSEC to pass-thru?? Here is my situation. I have have a 2514 with many internal addresses overloaded to one public address and Cisco VPN client doesn't work many to one translation. What is my best bet??

  • Library Gone + Runtime Error

    I am utterly confused, this is the second time iTunes died on me without me even restarting the PC. What happened this time was, I tried to open it but it gives me the following error: Runtime Error! Program: C:\Program Files\iTunes\iTunes.exe R6025