Slashdot Mirror


A Whitelist for Phone Calls?

javacowboy asks: "I've been getting lots of strange phone calls lately. Most of the time, my phone would ring less than three times and then stop before I can answer. Then, a couple of nights ago, I got a call at 3am in the morning. It had stopped ringing by the time I woke up. *69 revealed a number with an area code of 632, which does not exist. I called the number, and the call would not complete past the area code. I want a product or service with which I can set up a -whitelist- of numbers that I allow to make my phone ring. Any number not on the list, or an unlisted phone number, tries to call me, and the phone doesn't ring at all. I would pay as much for this service as I would pay to have my number removed from the phone directory. Is something like this possible? If so, how would I do it?" I'm getting fed up with: wrong numbers; callers hang up on me as soon as I speak into the phone; telemarketers; crank calls; late night calls; people I know that I no longer wish to speak to; etc. My telco charges $8 a month for call display, which is exorbitant. Still, a call display won't prevent my phone from ringing. A do not call list will not prevent my phone from ringing. Getting my phone number removed from the phone directory will not prevent wrong numbers. How can filter out the calls that I don't want to deal with?"

151 comments

  1. An end- user solution by vonsneerderhooten · · Score: 3, Insightful

    I remember seeing a while ago a device that you can program with a passcode. If you know the passcode, it lets the call through, if not, it emits a fast-busy signal. Damned if i can find a link to it, though.

  2. Looks like Manila to me by Marxist+Hacker+42 · · Score: 3, Informative

    Looks like your mysterious 632 area code is really Manila, probably an outsourced call center in the Philipines.

    Your topic is a Dupe, but a simple google search turned up these guys.

    --
    SJW: a person who perceives an injustice, and while correcting it, commits a greater injustice.
    1. Re:Looks like Manila to me by ILuvRamen · · Score: 0

      Oh well that's easy then. Get a phone with an answering device that will start every call with a recording of you saying "FUCK YOU AND YOUR COUNTRY!" then quietly, "unless you're from the US" and they might just hang up and never call again lol. By the way, your number must be really easy to accidentally dial or you wouldn't get so many whacko calls. What is it, 777-5555? Or is it really close to an American Idol number? Well most likely, it's really, really close to another in-country popular number in Manilla or some other place where if they dial a 1, they get you instead and tons of people are accidentally doing it. If I were you, I'd just change the number. And to be safe, never have it listed and only tell people the new number that you want to call you.

      --
      Google's Super Secret Search Algorithm: SELECT @search_results FROM internet WHERE @search_results = 'good'
    2. Re:Looks like Manila to me by Intron · · Score: 1

      Might not be. In USA, T-1 attached PBXs are programmed with the caller ID information, so anyone with their own PBX can pretend to be any number they want.

      --
      Intron: the portion of DNA which expresses nothing useful.
  3. Asterisk / Broadvoice? by karnal · · Score: 4, Informative

    I have two solutions:

    1. If you're a geek, try to wrap your head around Asterisk - I'd have to think either it would have that functionality built in, and if not - wouldn't be too hard to tell it to pass whitelisted #s, but dump everything else to voicemail....

    2. I use Broadvoice at home, and when I don't want to be disturbed, I *77 the phone. *78 unblocks it (takes it out of Do Not Disturb) - of course, this doesn't help when it's late at night and I don't do the *77 ahead of time, but I can make sure I don't get awoken again.

    Both of these implementations almost require an internet connection. While you can purchase FXO modules for Asterisk, I've just not had the interest in making a go at it with a PSTN connection....

    Another alternative - only one phone in our whole house rings. I sleep rather well, so I probably wouldn't hear it if it rang at night...

    --
    Karnal
    1. Re:Asterisk / Broadvoice? by Southpaw018 · · Score: 2, Informative

      Asterisk will handle this easily, but will only work if all phone in question are tied directly into it. For example, a cell phone won't be included in the solution. Just a note, since the submitter doesn't specify.

      --
      ACs are modded -6. I don't read you, I don't mod you, I don't see you. Don't like it? Don't be a coward.
    2. Re:Asterisk / Broadvoice? by isometrick · · Score: 1

      You could route the cell phone through Asterisk. (Incoming call connected to outgoing call to the cell phone, cell phone dials Asterisk to call out)

    3. Re:Asterisk / Broadvoice? by karnal · · Score: 1

      Actually, I think the submitter mentioned a fee for caller ID - I'm not sure that there's any cell service that actually charges for that, right?

      --
      Karnal
    4. Re:Asterisk / Broadvoice? by Anonymous Coward · · Score: 0

      I think he's referring to a landline phone.

    5. Re:Asterisk / Broadvoice? by darnok · · Score: 4, Informative

      > 1. If you're a geek, try to wrap your head around Asterisk - I'd have to think either it would have that
      > functionality built in, and if not - wouldn't be too hard to tell it to pass whitelisted #s, but dump everything
      > else to voicemail....

      Absolutely - I'm putting in an Asterisk box progressively over the last few nights to do all this and more. The rules aren't absolutely fixed in my head yet, but will be something like:
      - voicemail for everyone in the house; if someone calls, they can choose who they leave a message for
      - no calls after 10pm, unless it's from a whitelisted number (i.e. parents, friends)
      - no calls between 7pm-8:30pm, unless it's from a whitelisted number
      - *all* calls from numbers without caller ID go direct to voicemail (i.e. phone doesn't even ring), regardless of when the call comes in

      Asterisk basically gives you full-on routing capability for your incoming and outgoing calls. You can define rules based on caller ID, time of day, ... - pretty much any "property" of either incoming or outgoing calls.

    6. Re:Asterisk / Broadvoice? by Enderandrew · · Score: 1

      The submitted mentioned the fee he pays the local phone company for his phone number to remain unlisted.

      --
      http://blindscribblings.com - Tasty pop-culture in conceptual fashion.
    7. Re:Asterisk / Broadvoice? by Anonymous Coward · · Score: 3, Informative

      I did this with asterisk earlier this year. When a call comes in, the number is checked against a mysql database to see if the number is whitelisted or blacklisted. Whitelisted calls go straight through, and blacklisted calls hear a message that their number is blacklisted and then asterisk hangs up. Greylisted calls go to a message that says telemarketer calls are not allowed, then proceeds to give the user the option of ringing through or leaving a message. Calls between 10pm and 9am get an 'after hours' message which will go to voicemail unless the user enters the 'emergency' code which will then ring through. Works like a charm, and we've not been bothered by unwanted calls since.

    8. Re:Asterisk / Broadvoice? by Anonymous Coward · · Score: 0


      I'm not sure that there's any cell service that actually charges for that, right?

      Telus in .ca charges for caller ID. They started that a few years ago, the thieving cunts.

    9. Re:Asterisk / Broadvoice? by walt-sjc · · Score: 2, Interesting

      If you are running asterisk and don't want to be disturbed at night, use time based routing. It's quite simple. Between 9pm and 7am, I have it setup so you have to press 5 to get through unless you are on the "family" whitelist. This allows emergencies to get through, and zero automated calls. I also require non-whitelisted calls to press 5 at all times. This has stopped all automated calls. The wording of the message strongly discourages non-personal calls from continuing. End result is that I have peace and quiet when I want it, zero wrong number calls, etc. It's easy with *99 after a call to add a new callerID to the whitelist.

    10. Re:Asterisk / Broadvoice? by josquint · · Score: 1

      1. If you're a geek, try to wrap your head around Asterisk - I'd have to think either it would have that functionality built in, and if not - wouldn't be too hard to tell it to pass whitelisted #s, but dump everything else to voicemail....


      Been trying to wrap my head around it, but all I have are POTS phones. I know an IA92 intel modem should connect the Asterisk box to standard phone line, but what about my standad analog phones? I hate try to find business-like desk phones and replace my nice cordless analog ones.
    11. Re:Asterisk / Broadvoice? by karnal · · Score: 1

      An FXS adapter (100$ usb?) for Asterix will allow you to connect your server/workstation up to your analog phones, and provide dialtone/ringing.

      --
      Karnal
  4. Missed calls by Propaganda13 · · Score: 4, Insightful

    Whitelists will prevent
    1. your stranded grandma from calling you
    2. friends calling from their friends house
    3. that cute girl you just met
    4. various official phone calls that you really needed to receive

    Luckily, whitelists will still allow your mom to call from upstairs when dinner is ready.

    1. Re:Missed calls by thegrassyknowl · · Score: 5, Funny

      > Whitelists will prevent
      > 1. your stranded grandma from calling you

      Why she can't call your mum is beyond me! Why is granny your problem?

      > 2. friends calling from their friends house

      Geeks don't have friends, remember. They have online acquaintances who use IM or
      VoIP these days. Worst-case they might email you.

      > 3. that cute girl you just met

      Calls from girls? You're mistaking us for people who actually know how to talk
      to girls!

      > 4. various official phone calls that you really needed to receive

      When was the last time you were required to receive a phone call? If it's that
      important they kick in your door and confiscate your computer equipment using
      rent-a-cops looking for any music at all.

      > Luckily, whitelists will still allow your mom to call from upstairs when dinner is ready.

      Damn, the one person I dont' want to call. Mum just doesn't make enough geek food
      like pizza and she confiscated all my twisties. How am I supposed to write code with
      broccoli and mash as the fuel?

      --
      I drink to make other people interesting!
    2. Re:Missed calls by honkycat · · Score: 3, Funny

      Calls from girls? You're mistaking us for people who actually know how to talk to girls! No, parent was right. In the unlikely event that one of these things they call "girls" *does* call, it is absolutely vital that the call get through. The odds of it happening twice in a lifetime are so astronomical as to be the stuff of fiction.
    3. Re:Missed calls by MindStalker · · Score: 1

      I generally just answer everything that comes from my local area code. If it doesn't or isn't of a small group of people I expect to call long distance I don't answer it. Would be nice to be able "whitelist" by area code. Most of the time the girl you just met will have a local number, if not do you really want a long distance relationship?? (Well if it means no commitment booty call??.. maybe)

    4. Re:Missed calls by benh57 · · Score: 1

      A lot of people in LA are from other states, and still have their old cell numbers. Even people who have been here years, i've found.

    5. Re:Missed calls by thegrassyknowl · · Score: 1

      I must admit that one of these things called "girls" did call me twice. Turns out they were both wrong numbers, so that doesn't really count.

      --
      I drink to make other people interesting!
    6. Re:Missed calls by Jeff+DeMaagd · · Score: 1

      If the system doesn't allow the phone to ring, but accepts a voice message, then most of the time, it's not a problem. If "stranded grandma" has a phobia of leaving a voice messages, then she f**king needs to get over it.

    7. Re:Missed calls by laffer1 · · Score: 1

      If you do meet a 'girl', she may just email you anyway. When I met my wife, we just exchanged AOL screen names. (Yes, I used that awful service in the 90s) No need for one of those pesky phones. I didn't even know her number for the first month.

    8. Re:Missed calls by JanneM · · Score: 1

      I do have a whitelist on my mobile phone (the only phone I have), for both mail and calls. Nifty thing is, if a number or email is in my addressbook, it'll automatically be on the whitelist. So anybody I've exchanged contact info with can reach me, no problem. I would like the phone to whitelist any number I've called as well; perhaps in the next one.

      1. your stranded grandma from calling you

      Where she's stranded, no phone calls will go through. If I get a call from my grandmother it's time to call Max von Sydow.

      2. friends calling from their friends house

      My friends all have mobile phones.

      3. that cute girl you just met

      I'm married.

      4. various official phone calls that you really needed to receive

      If it's _official_ and important it'll come through postal mail. If it's work I have that nubmer range listed. If it's neither, well, that's the kind of calls I'm screening against.

      --
      Trust the Computer. The Computer is your friend.
    9. Re:Missed calls by dwater · · Score: 1

      > The odds of it happening twice in a lifetime are so astronomical as to be the stuff of fiction.

      By 'astronomical', you mean 'infinitesimal', right?

      Otherwise, why bother with the first one, if the second one is so certain?
      Actually, it would seem that the second one is so likely, it's almost like it doesn't really matter if the first one happens at all...er, hrm. Sounds like something Douglas Adams would've thought up.

      Wait. Is this one of those USian say-the-opposite-of-what-I-mean things? ...like, "I ain't got no gun", or "I can't get no satisfaction".
      Oh, double wait. That last one was by them English blokes, right? Well, I guess it was where the guy was when he thought of it (Clearwater, Florida, apparently).

      --
      Max.
    10. Re:Missed calls by Fulkkari · · Score: 1

      No, parent was right. In the unlikely event that one of these things they call "girls" *does* call, it is absolutely vital that the call get through. The odds of it happening twice in a lifetime are so astronomical as to be the stuff of fiction.

      If the call gets trough, that still leaves us with the problem how to talk to the girl, doesn't it?

      --
      I demand the Cone of Silence!
    11. Re:Missed calls by honkycat · · Score: 1

      Well, given that probabilities can't exceed 1, I think it's safe to assume I'm referring to the reciprocal of an astronomically large number. Think of it like the astronomical(ly small) gas pressure in intergalactic space.

    12. Re:Missed calls by rabblerabble · · Score: 0

      But I need Mom to call me... But only when she says that she just got some Pzones from Pizza Hut®. Otherwise she can stay the hell upstairs, all that light...!

    13. Re:Missed calls by dwater · · Score: 1

      Well, yes, obviously; but that isn't nearly so funny (IMO).

      --
      Max.
    14. Re:Missed calls by serialdogma · · Score: 1

      >I didn't even know her number for the first month.
      Nor `her' gender.

      Sorry, I'll resist next time.

    15. Re:Missed calls by dmayle · · Score: 1

      What he needs is not just whitelisting, but greylisting. If he sets up and asterisk server with a default pass through on his whitelist, everyone else gets a recorded message asking them to press a button before ringing through to the house, and he can even force to voice mail for his non-whitelisted numbers at unreasonable hours. If he 's really concerned about someone needing to call him in the middle of the night, he gives out a passcode that people he knows can use to bypass the menu even in the middle of the night.

    16. Re:Missed calls by heinousjay · · Score: 1

      If your first post is the stuff of humor, I'd really hate to drain that away and see what's left.

      --
      Slashdot - where whining about luck is the new way to make the world you want.
    17. Re:Missed calls by dwater · · Score: 1

      ooh. ouch. please stop.

      --
      Max.
    18. Re:Missed calls by tigersha · · Score: 2, Funny

      >> 3. that cute girl you just met

      > I'm married.

      Then you DEFINITELY want that call to forwarded to another number!

      --
      The dangers of excessive individualism are nothing compared to the oppressiveness of excessive collectivism
    19. Re:Missed calls by KevReedUK · · Score: 1

      Off-topic I know, but on the subject of the Stones, I always thought "I can't get no satisfaction" would have been a better choice for the Win95 ads than "Start me up"... unless they meant "Start me up... wait for me to crash... return to step 1"

      And before anyone flames me as a Mac/Linux/BSD fanboy... I've never used a NON MS OS on a desktop PC in my life (well... not since my old Amstrad CPC464, but computers that boot from tape don't count IMHO)...

      --
      Just my $0.03 (At current exchange rates, my £0.02 is worth more than your $0.02)
    20. Re:Missed calls by Alioth · · Score: 1

      Whitelists don't have to be that restrictive. I doubt this guy's getting annoying calls from the same area code - so allow any call from your area code to ring the phone. That solves the stranded granny, friends calling from a friends house, the cute girl an 99.9% of the official calls.

    21. Re:Missed calls by walt-sjc · · Score: 1

      Whitelists allow certain calls to go directly through. Non-whitelisted calls get additional processing which may or may not allow the call to go through depending on a number of variables.

    22. Re:Missed calls by deacon · · Score: 1

      This device will let you do that:

      http://www.privacycorps.com/products/?id=20

      Your phone will not ring unless the calling number meets the rules you set

    23. Re:Missed calls by laffer1 · · Score: 1

      You do that. Actually, I was certain of her gender on the first date.

  5. Asterisk by Anonymous Coward · · Score: 0

    Get a wildcard x100P or clone for less than $15. Get an old PC of at least 300 or 400 MHz. Install Asterisk from one of the pre-packaged distros, such as TrixBox.

    The functionality where by you send a call straight to a "special place" (usually voicemail) based on caller id is usually called "ex-girlfriend logic" for obvious reasons. If you check the online documentation for TrixBox and similar setups, you should be able to find something which has that configurable with a web interface, if not, you will have to write a script that checks a variable called $CALLERID and does the right thing.

    You might consider having this ability kick in based on time of day.

    One thing people do is have the system request the caller enter in THEIR OWN caller id and check for it to match. Most call center folks have no way of knowing what their own caller id is showing up as. You could have the system automatically whitelist that number after that.

  6. Easy Solution by QuantumG · · Score: 1

    Stop telling your one night stands your phone number.

    --
    How we know is more important than what we know.
    1. Re:Easy Solution by bladesjester · · Score: 1

      Exchanging numbers at clubs is now considered normal.

      --
      Everything I need to know I learned by killing smart people and eating their brains.
    2. Re:Easy Solution by QuantumG · · Score: 1

      No, I ment if he stops scorning women then he'll stop receiving fury at 3am.

      --
      How we know is more important than what we know.
    3. Re:Easy Solution by bladesjester · · Score: 1

      Who says the 3am calls have to be full of fury? The person you origionally replied to was talking about calls from women not getting through your whitelist because they weren't added to it.

      Maybe I'm not the standard geek, but I've gotten a whole lot of calls at weird hours that were more interesting than they were furious. Of course, I was usually out at the time and the calls were coming to my cell. If I'm asleep, I turn off the ringer. =]

      However, I have to admit that getting called by drunk people who dialed the wrong number (someone's number was like one digit different than mine) can be downright hilarious.

      --
      Everything I need to know I learned by killing smart people and eating their brains.
    4. Re:Easy Solution by QuantumG · · Score: 1

      Attempt at joke: aborted.

      --
      How we know is more important than what we know.
    5. Re:Easy Solution by malraid · · Score: 1

      "Phone number? No I don't have one, and I don't have a last name either. My parent's were very postmodern, so they didn't give me a last name" ... Works everytime !!!

      --
      please excuse my apathy
  7. Use Asterisk by ResQuad · · Score: 2, Informative

    The scripting for the extensions.conf file is more than powerful enough to have a CallerID based whitelist, heck, you can even have it database powered. You can have the Asterisk PBX do what ever you want. How about:
    Step 1: Phone call comes in, Asterisk picks up
    Step 2: If the CallerID is whitelisted, ring internal phone.
    Step 3: If the CallerID is blank/unknown, prompt for CallerID or send to voicemail.
    Step 4: If the CallerID is black listed - do whatever you want (perma-onhold, disconnect, fast busy, etc)

    Its not hard, really. It would only take a few minutes to setup once you have asterisk running.

    1. Re:Use Asterisk by BobPaul · · Score: 1

      It's quite easy in theory, but setting up Asterisk is no cakewalk. Although I guess I've never tried any those easy install asterisk distributions.

  8. 632? by Anonymous Coward · · Score: 0

    I've been getting lots of strange phone calls lately. Most of the time, my phone would ring less than three times and then stop before I can answer. Then, a couple of nights ago, I got a call at 3am in the morning. It had stopped ringing by the time I woke up. *69 revealed a number with an area code of 632, which does not exist.

    Er, maybe you should try adjusting your medication...

  9. Grand Central by EMeta · · Score: 4, Informative

    The NYT had a very interesting article about Grandcentral.com, which I believe would whitelist and much more, if you sign up for them, which at the time, I believe was free. Here's the article.

  10. Me too, but I don't think this would work for me by isometrick · · Score: 1

    I need something like this as well, but there are plenty of situations where I might need to get a call from a number I've never encountered. E.g., sometimes my wife forgets her phone (or it runs out of batteries) and ends up calling me from a friend's phone.

    I get junk fax calls sometimes between 3-5am on my cell phone (beep ... beep ... for a couple of minutes and hangup). They either have no caller id, an invalid phone number, or a phone number that the phone company doesn't think exists.

  11. Quick Answer by xero314 · · Score: 1

    Don't have a phone. Well to be more realistic don't have a land line. I rarely get wrong number calls and never get telemarketing calls, but that's because I do not have a land line of any sort. Because of the rate structure in the US of cell calls it is illegal for you to receive unsolicited marketing calls on a cell phone.

    The other solution, as a friend of mine has taken on, is to switch to texting for anything you can.

    1. Re:Quick Answer by Akaihiryuu · · Score: 2, Informative

      On my cell phone, I set custom rings for everyone in my address book. I can turn off the default ring on my phone by setting it to "alarm only". Anyone in my address book will still ring, anything else is silent. I just use this setting when I don't want to be disturbed. The only time I answer an unrecognized phone number is when I'm expecting to possibly get calls, for example right now when I'm looking for a job in another state. If it really is important, and I don't answer it because it's an unrecognize number, well that's what my voice mail is for. If it's really important, they'll leave a message and I'll call them back. I haven't had a telemarketing call in many years. In fact, I haven't even had to use my "alarm only" setting...only time I tried it was to test it.

  12. I'm one off from the local... by iknownuttin · · Score: 5, Funny
    Marriot Hotel. Lots of wrong numbers which isn't a problem. The one time it was a problem was when some teachers group had some sort of convention there.
    Their people printed our number on their fliers. Most of the folks were nice when we told them they had the wrong number, but a few got really pissed and insisted that they had the right number. I really wanted to say after they "insisted" rudely for a few times, "OK, you got me! This really is the Marriot and because I, Joe Schmoo, gave you a hard time, you can have the presidential suite and a bottle of Dom every night - free of charge. Here's your confirmation #." And then I would then let them go.

    My wife vetoed that. Sign....

    --
    I prefer Flambe as apposed flamebait.
    1. Re:I'm one off from the local... by Plebis · · Score: 0

      And why would you listen to your wife?

      --
      "Dude, pounds are so metric, fuck that." - Noah
    2. Re:I'm one off from the local... by UbuntuDupe · · Score: 1

      My wife vetoed that. Sign....

      I've called my wife a lot of nasty things in the past, but never a *sign*. That's just wrong. Take that back.

    3. Re:I'm one off from the local... by Anonymous Coward · · Score: 1, Funny

      As a student our flat's phone number was extremely close to that of the local pizza parlor. We ask the local teleco to change our number, but back then this took about 6 months.

      We very quickly discovered that it was more fun (and only slightly slower) to take the order than explain their mistake*. The pizza place was only pick-up and had no delivery service, so I presume people would go to collect their order and the pizza parlor would simple deny they had received. The parlor could then make the pizza then and there.

      * Why do people often think its your fault they phoned the wrong number?

    4. Re:I'm one off from the local... by Archangel+Michael · · Score: 1

      You aren't married, are you?

      If you are, no, I don't know any divorce attorneys.

      --
      Agent K: A *person* is smart. People are dumb, stupid, panicky animals, and you know it.
    5. Re:I'm one off from the local... by BobPaul · · Score: 1

      We had the same thing with the local hospital, though I forget which department. The best part was our number had an 8 at the end an the hospital's was a 9 -- easily confused in the cheap phonebook font, especially by the elderly, who would often insist we were the hospital. We promptly requested a new number...

    6. Re:I'm one off from the local... by deniable · · Score: 1

      We got issued the number of a former hospital. We had the number for ten years and were still getting referrals for, IIRC, mostly breast-screenings.

    7. Re:I'm one off from the local... by deniable · · Score: 1

      I had my work direct line (diverted to mobile after hours, never again) listed in the paper for a no-experience, good pay, lots of travel, sales job.

      About 10% of the 'applicants' failed the simple test of:
      Sorry, this is the wrong number, try nnnn-nnnn.
      Yes, the paper has the wrong number. No, I don't know about the job.
      I don't know about pay.
      I can't re-schedule your interview.

    8. Re:I'm one off from the local... by RealGrouchy · · Score: 1

      Our phone number is nothing special, but our group's name starts with the word "Citizen". Every now and then we get calls from old folks wondering where their Ottawa Citizen newspaper is (a particularly amusing example of which I have saved to a sound file), and the other day I got a call from some ESL dude who was wondering about the status of his citizenship application (a clue: you probably sent it to the wrong address).

      When I tell them they have the wrong number, they assume that I must know the phone number of the place they're looking for. Sigh again...

      - RG>

      --
      Hey pal, this isn't a pleasantforest, so don't waste my time with pleasantries!
    9. Re:I'm one off from the local... by Anonymous Coward · · Score: 0

      and were still getting referrals for, IIRC, mostly breast-screenings. Oh, certainly. Stop right in. No, no, we're more of a small clinic. I'll get you the address.
    10. Re:I'm one off from the local... by Anonymous Coward · · Score: 0

      * Why do people often think its your fault they phoned the wrong number?

      Because they're infallible. Not surprisingly, this demographic also intersects nicely with highly religious people. I had to a field a call a few days ago from someone from Liberty University, and honestly, he was the biggest dick in the world. Even though I was walking him through steps that have successfully worked for thousands and thousands of customers, he kept insisting that they were wrong (hey, it's our system, and we understand it much better than some god-whacko). Easily one of the most hate-filled vitriolic people I've dealt with in a long time.

    11. Re:I'm one off from the local... by Anonymous Coward · · Score: 0

      It was worse at my old house, it had the same number, but different area code as the local emergency number. This was before 911 came to the area. It was also a period where they were adding/revising area codes in my area too, how fun. We'd get hysterical people on the line and no matter what we did, they wouldn't want to hang up and insist we were joking, or immediately called back. It was severely frustrating to not want to pick up the phone during that time. What happens if they called and we picked up they sued because we then didn't relay/call the actual emergency number?

  13. The feature already exists.... by Yuan-Lung · · Score: 4, Insightful

    I want a product or service with which I can set up a -whitelist- of numbers that I allow to make my phone ring. Any number not on the list, or an unlisted phone number, tries to call me, and the phone doesn't ring at all.


    Many modern phones already have this feature, in the form of custom ring. Just set the numbers in your contact list that you would like to whitelist to have a ring, and set the default ring to silent.

    1. Re:The feature already exists.... by Southpaw018 · · Score: 0, Redundant

      Damn, and I already posted in this thread and can't mod you up. I never would have thought of something that simple or elegant (if they're using a cell phone).

      --
      ACs are modded -6. I don't read you, I don't mod you, I don't see you. Don't like it? Don't be a coward.
    2. Re:The feature already exists.... by coldcell · · Score: 1
      That would seem helpful, though many people have some form of answer-phone/voicemail system, and (as someone who also suffers from TFA's problem) many of the cold callers, or even automated robot callers still get through. I'm getting sick and tired of deleting 5+ messages a day that simply hang up, or record a robot speech into my answerphone from people I don't know/want to deal with!

      For the record, I do usually set the 5+ phones in our house to silent when watching a movie, and only a couple on the lowest volume at other times.

      --
      Launchy.net changed my world.
    3. Re:The feature already exists.... by Jherek+Carnelian · · Score: 1

      Anyone know how to get a silent ringtone on a t-mobile phone?

      I've looked into the normal SMS format (basically prefix the content of the message with a "port number" that defines what kind of data follows) but apparently t-mobile screws with incoming messages and puts a header on them, causing the port number to be treated like normal text.

      While I would reluctantly pay a few bucks for a truly silent ringtone, I don't want to use one of those 3rd party services that will sell you ringtones because I don't trust that they won't just resell my info and cell phone number to more junk-callers and who knows what other scummy types.

    4. Re:The feature already exists.... by QuantumG · · Score: 1

      Are you talking about a cell phone? If so, why does your provider have anything to do with it? Personally, I use mp3s as my ring tones, and making a silent ring tone is as simple as making a silent mp3.

      --
      How we know is more important than what we know.
    5. Re:The feature already exists.... by Anonymous Coward · · Score: 0

      Because SMS messages pass THROUGH your service provider who can choose to screw with them or not. T-mobile screws with them.

    6. Re:The feature already exists.... by QuantumG · · Score: 1

      What do SMS messages have to do with ring tones? Your phone has bluetooth right?

      --
      How we know is more important than what we know.
    7. Re:The feature already exists.... by Anonymous Coward · · Score: 0

      he's an american, they have the worlds biggest steaming pile of shite for cellphone networks... or in their completely fvcked idea of things, it's known as a "wireless provider"

      just thinking about it makes my head hurt worse than sculling a slushy

    8. Re:The feature already exists.... by The+One+and+Only · · Score: 1

      Fuck that. Most modern cellphones you can set up to block calls from people who aren't in your address book.

      --
      In Repressive Burma, it's not just your connection that dies. slashdot.org/comments.pl?sid=314547&cid=20819199
    9. Re:The feature already exists.... by algf2004 · · Score: 1

      Many modern phones already have this feature...set the default ring to silent.

      Could you please give me a few model numbers to look for? My phone has an alternate ring, but not a silent one. In fact the alternate is more annoying than the regular ring. Vtech, GE, etc?

    10. Re:The feature already exists.... by asdfghjklqwertyuiop · · Score: 1


      How about a cell phone that will let you make certain numbers vibrate and the rest not ring or vibrate at all?

      That's what I really want. I never use ringtones. My phone is always on vibrate.

    11. Re:The feature already exists.... by Yuan-Lung · · Score: 1

      I am using a hiptop2, which when set to vibrate, vibrates based on the selected ringtone. So when a silent tone is selected, it won't vibrate at all.

    12. Re:The feature already exists.... by Yuan-Lung · · Score: 1

      Could you please give me a few model numbers to look for? My phone has an alternate ring, but not a silent one. In fact the alternate is more annoying than the regular ring. Vtech, GE, etc?

      Some phones let you set a volume for every custom ring, and it's just a matter of setting it to zero. Others let you upload your own ringtone, then it would be just a matter of uploading a blank midi or wav/mp3 file.

      I am no a phone enthusiast, so I can't give you an extensive list. Cell phone seem to do better in this area, almost all cell phones now can be uploaded/programmed with your own ring. However I've seen cordless phones capable of this too. Panasonic KX-TG5776S and Vtech i5858 5.8GHz are two cordless phones that I know can do this. I recall seeing a motorola having similar features too.

    13. Re:The feature already exists.... by Jherek+Carnelian · · Score: 0, Flamebait

      What do SMS messages have to do with ring tones? Your phone has bluetooth right? SMS/MMS is the method by which ringtones and other data is delivered to t-mobile phones that do not have ip connectivity. No it does not have bluetooth. Nor does it play mp3s. Do you think it's possible that I might have researched how ringtones are delivered to my phone, actually know the way the system works, and just want a helpful answer to the question asked?
    14. Re:The feature already exists.... by QuantumG · · Score: 1

      Why don't you just go get a new phone? Ya know, get something modern that does play mp3s.

      --
      How we know is more important than what we know.
    15. Re:The feature already exists.... by Jherek+Carnelian · · Score: 0

      While I would reluctantly pay a few bucks for a truly silent ringtone...

    16. Re:The feature already exists.... by QuantumG · · Score: 1

      Well there's plenty of other advantages to getting a new phone.

      My phone plays mp3s, takes pictures, can access wifi, has an email program and a web browser.

      Not to mention the fact that it is smaller, lighter, and has longer battery life than my old phone.

      Surely there's something in there that you could use.. you're posting on Slashdot, where's your gadget love? Act like a geek already.

      --
      How we know is more important than what we know.
    17. Re:The feature already exists.... by Anonymous Coward · · Score: 0

      I dunno about T-mobile specifically, but my Dad made this page with instructions that worked for me on Sprint.

  14. Get a better phone by Anonymous Coward · · Score: 0

    I was having similar problems with my mobile phone. I configured my phone to only ring when a number in my phonebook calls me. Stop looking at the service and start looking at the device. Surely there's a home phone that allows you to do the same with caller ID.

  15. I had the same problem... by Anonymous Coward · · Score: 0

    I destroyed my normal phone with my bare hands after a tele-marketeer called me. I got several bleeding wounds from that. But then it did shut THE HELL UP!!!!

    Then I started to care about the features of my bloat handy and it turned out I can specify different rung tones for different callers.

    So, I can only be reached by handy from now and no-ring-tone is the default.

    The quality of my life has been increased.

  16. telezapper by phatvw · · Score: 5, Informative

    I think you're talking about the Telezapper A quick google search turned up a nice privacy page with useful, although fairly obvious recommendations: http://www.privacyrights.org/fs/fs3-hrs2.htm

    1. Re:telezapper by phatvw · · Score: 1
      From the privacy page linked above: http://www.privacyrights.org/fs/fs3-hrs2.htm

      • "Another product on the market is an attachment to the telephone called an "inbound call blocker." It allows only those callers who enter a special numeric code onto their touchtone phone pad to ring through to your number. This device is highly effective in preventing unwanted calls. However, you must be certain to give the code to everyone you want to talk to. Even so, you could miss important calls from unexpected sources, like emergency services.

        Several vendors sell such call screening devices. Check the web site of Privacy Corps (http://www.privacycorps.com) or call (888) 633-5777. Other sources include Command Communications (http://www.command-comm.com), at (800) 288-3491; and Avinta (http://www.avinta.com) at (800) 227-1782. No endorsements are implied. "
    2. Re:telezapper by Anonymous Coward · · Score: 0

      I have a rotary phone you insensitive clod!

    3. Re:telezapper by stephanruby · · Score: 3, Informative

      Someone mod the parent down before too many slashdotters waste their money, the telezapper used to work -- but now it doesn't anymore. A few years back the automatic dialers relied on the standard telephone tones to know that a telephone had been disconnected, or busy, or whatever. The telezapper exploited that functionality by faking those tones whenever someone called. And the telezapper got so popular, that the makers of the automatic dialers stopped relying on those tones alone to know that a phone was disconnected, so now the telezapper is completely useless. Not only that, but the telezapper was also rarely used once purchased since *everyone* not just the telemarketers -- got to hear the annoying tone at the beginning of the call. Now, the people selling telezappers are just rip off artists, they know their products don't work -- so don't expect a refund.

      No, the real solution is to get caller id from your phone company (assuming you live in a State or a Country that allows it) and buy one of those devices that white lists the phone numbers you want to receive, and otherwise allows your callers to punch in a special code in case they're not white listed yet. That special code, you could give it out only to your friends, or you could simply leave it on your outgoing message -- since even leaving it as an outgoing message will probably screen out a good portion of automated telemarketers. And notice, I said buy a device, don't rent, do not lease it from your phone company, those things are dead cheap, and the phone company is just going to make a nice profit on the monthly fee.

      And someone said it already, but I just want to repeat it in case some of you missed it. If you have a cell phone, check your manual to see what kind of built-in functionality it already has. Even the basic cell phones these days have some pretty decent scheduling functionality, ring tones or vibrations for different numbers (or categories of numbers), and automated forwarding of certain phone calls directly into voice mail.

  17. Asterisk or Trixbox by swsuehr · · Score: 1

    Asterisk can do this rather trivially as part of the dial plans. Get yourself a TDM22B or some other similar card and you can set up anything you want to happen when a number calls in. From forwarding to another number to answering and then hanging up, to answering and asking for a passcode in order to make your phones ring, you can do it with an Asterisk set up.

    Maybe try Trixbox for an easy to use, all in one setup of the same. Pop in the Trixbox CD and it auto-installs.

    I have a configuration that allows incoming calls during certain times of day and then only from other numbers after those times. So it definitely sounds like what you want to do will be possible with *.

    Steve
  18. Check your phone by xXenXx · · Score: 0

    Most Nextel cellphones (at least) have a whitelist built-in. You can have it allow only numbers in your phonebook in, everything else gets redirected to voicemail. Hopefully if someone needs to tell you something urgent, but they aren't in your phonebook, they'll have enough common sense to leave a message...

  19. Super Simple by TubeSteak · · Score: 3, Informative

    I'm not sure how this made it to the front page.

    The easiest solution:
    Go down to your local big box store & check out the various cordless phones. You'll find the ones with fancier base stations will allow you to deal with incoming calls however you like.

    After the person has called. You just setup that # not to ring, to go directly to voicemail or if the phone supports it, it'll just hang up.

    You don't even have to give up your corded phones & buy extra handsets.

    --
    [Fuck Beta]
    o0t!
    1. Re:Super Simple by plierhead · · Score: 1

      Your idea is probably one tenth of the cost, certainly one hundredth of the effort and most likely ten times as reliable as using Asterisk as some other posters have suggested....

      Therefore your geek credentials are hereby revoked.

      --

      [x] auto-moderate all posts by this user as insightful

    2. Re:Super Simple by jbrannon · · Score: 1

      After the person has called. You just setup that # not to ring, to o directly to voicemail or if the phone supports it, it'll just hang up.

      Except that's called a blacklist, not a whitelist. He wants something to block all calls except for a few that he specifies, not the other way around.
  20. In Soviet Russia by Anonymous Coward · · Score: 1, Interesting

    Cute little pants poops YOU!

    1. Re:In Soviet Russia by PurifyYourMind · · Score: 1

      Hahaha. Good one.

      Strange this got modded as Interesting. Mods are drunk tonight I guess.

    2. Re:In Soviet Russia by Anonymous Coward · · Score: 0

      I have had three 24 ounce steel reserves tonight.. And I am posting anonymous because fuck you.

    3. Re:In Soviet Russia by PurifyYourMind · · Score: 1

      I have 24 ounce steel balls.

  21. "Privacy Manager" by oneiros27 · · Score: 2, Informative

    From the article you linked to, the very last item mentioned is 'Privacy Manager'. My brother had it (or something remarkably similar ... he said it was from the phone company, not a device) for a few years, before he just went and got his number un-listed.

    The only time he ever had a problem was when he was waiting for a call from our step-father, who it seems had problems with his cell phone, and was trying to call from a pay phone, and kept getting blocked ... but he wasn't presented with the prompt to enter the code. (and of course, we were supposed to be picking him up from the airport, and he had changed flights, so it caused a bit of a problem).

    And I know the incident happened more than 5 years ago, so it's been available for some time. (as I remember being slowed down at the security gate for carrying 3 knives, 2 cell phones and a PDA, but as I wasn't arrested, it must've been before Sept 2001)

    --
    Build it, and they will come^Hplain.
    1. Re:"Privacy Manager" by laffer1 · · Score: 1

      SBC offered that service. It worked very well for me.

    2. Re:"Privacy Manager" by Thalagyrt · · Score: 1

      For WM5/6 cell phones, SPB Phone Suite has a call whitelist/blacklist feature that seems to work wonders so far.

      --
      Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo!
  22. PIME TARADOX! by WhatAmIDoingHere · · Score: 1

    "I got a call at 3am in the morning"

    As opposed to 3am at night?

    --
    Not a Twitter sockpuppet... but I wish I was.
    1. Re:PIME TARADOX! by fremsley471 · · Score: 1

      One in the morning Two in the morning Three in the morning Four in the morning Five in the morning Six in the morning Seven in the morning Eight in the morning Nine in the morning Ten in the morning Eleven in the morning Noon One in the afternoon Two in the afternoon Three in the afternoon Four in the afternoon Five in the evening Six in the evening Seven in the evening Eight at night Nine at night Ten at night Eleven at night Midnight

    2. Re:PIME TARADOX! by belmolis · · Score: 1

      For normal geeks, 3 a.m. IS at night. The only people for whom 3 a.m. is in the morning are monks and marines.

    3. Re:PIME TARADOX! by gEvil+(beta) · · Score: 1

      Yes, but you'll never have a 3am in the afternoon, which was the point of the post.

      --
      This guy's the limit!
    4. Re:PIME TARADOX! by gEvil+(beta) · · Score: 1

      Derrr, ignore me. That's not what WhatAmIDoingHere was getting at at all. Rather, it was what I was thinking when I first read the submission.

      --
      This guy's the limit!
  23. Blacklisting by number and time might be better by solid_liq · · Score: 1

    You could setup an Asterisks PBX (free open source, based on Linux), use VoIP to save money, have all the features you need and a lot more, and if you have a spare PC lying around for this (an old one is plenty of power), it'll cost you a lot less in the long run than paying a monthly fee. Plus, it'll be really cool: music on hold (music YOU like :), different mailboxes, nice voicemail system, ability to use cool phones if you want to (like those Cisco phones w/ the color displays), etc. If you can afford the upfront cost, then I think it's worth it. Use it to show off your geek prowess ;)

  24. one night stands? by game+kid · · Score: 0

    I can't even get one one night stand, you insensitive clod!

    --
    You can hold down the "B" button for continuous firing.
  25. Privacy Corps makes the product you want by Shabbs · · Score: 1
    --
    Mark
    1. Re:Privacy Corps makes the product you want by gbickel · · Score: 1

      I agree fully with this poster. The Caller Id Manager is a practical, easily implemented solution. Nothing special other than caller ID is required. You are in charge of who can make your phone run. Private calls and callers that I deemed annoying hear a phone ringing until they give up, while my phone remains silent. Works as advertised. You can operate in a mode where you blackist numbers or area codes, white list mode where everything is blocked unless you choose to allow.

      --
      Greg
  26. This answer might annoy you by sparks · · Score: 1

    My phone line doesn't allow calls from people I don't want calling. If you're not from my area code, and you don't have CLI in the whitelist, you can only make my phone ring if you know the correct PIN. Otherwise, sorry.

    If you are a telemarketer or other phone spammer who has annoyed me in the past, you might get worse treatment. Depending on my mood, or based on your CLI, I might have the phone network tell you that my line isn't in service. Or I might consign you to "virtual ring" hell, where you will hear what you believe is my phone ringing, and ringing, forever until you give up on me. Or heck, I might just forward you to your own phone number so I can waste two phone spammer's time instead of just one.

    All these things are standard features of the VOIP plan I use, which is Talk Broadband from Primus in Canada. It's a delightfully geek-friendly system. Unfortunately I don't know if there is an equivalent in the US which you could use...

    1. Re:This answer might annoy you by sparks · · Score: 1

      I should add that all these call treatments are handled by the network; I don't manually decide what to do with each call when it comes in; I have programmed these behaviours in advance.

  27. I've got a new one... Anybody seen this? by Anonymous Coward · · Score: 1, Interesting

    Not a new solution, a new kind of problem.

    I get very few marketing calls, thanks to do-not-call lists and such. I screen the rest with an answering machine.

    Recently I was getting no-message calls at random times of day, a sure sign that some call-center was trying to reach me.

    Then one day immediately after hanging up from a legitimate call, the phone rang. I thought my friend forgot to tell me something, so I picked up. It was a call center looking for a political donation.

    The odd thing was that they managed to call immediately after a real call. That's a high coincidence considering that I get few calls during the day.

    It made me wonder if they paid for some kind of special "camping" feature. Anybody else seen this?

  28. Will a cel phone work? by jkerman · · Score: 1

    Not sure if a cellular phone is acceptable for your situation or not, but one of my favorite features is "custom ringtones" based on caller-ID.
    If you set the main ringer to silent, and custom audibles for your friends, should work no problem!

    Which brings up another good question, in that i have a cellular phone the size of a pile of credit cards, with all these awesome features. but every cordless phone on the shelf looks like the same basic piece of shit they have been since the 80s. sure, maybe a color display now, but same basic crappiness.

    If the world made sense, your cordless phone would have a similar enough featureset to get the job done

  29. Asterisk by Natales · · Score: 1

    Get a low power PC and install Asterisk, OpenPBX, Yate or any other Open Source PBX. You can do *whatever* you want with the call.

    I implemented a similar system for my home once. I accepted the calls, but if for some reason I didn't like them, I programmed *991 to blacklist the last number received, period. Future calls would check into a small Asterisk database and if the number is listed there, it would send it to a caller torture script that will keep the victim in endless voice prompts. Nobody says you can't have a little fun with it along the way...

  30. Non Tech solution by sirknz · · Score: 2, Insightful

    Why not just leave the phone of the hook or unplug it from the wall overnight?

    1. Re:Non Tech solution by Pope · · Score: 1

      Leaving it off the hook is bad, and makes the phone go beep-beep-beep-beep all night long. I just switch the ringer off.

      --
      It doesn't mean much now, it's built for the future.
  31. "Privacy Manager" by Anonymous Coward · · Score: 0

    What you are looking for is available from, just POTS, and it's called "Privacy Manager". Whether cell phone companies offer it, I have no idea.

    Basically, if someone is not calling from an "approved" number, the phone doesn't ring, and it goes to a voice mail system; if they want to get through, they have to say who they are, your phone will ring, and you will tell the phone whether to connect or not.

  32. GrandCentral.com by biohack · · Score: 2, Informative

    I am using a web-based service that, among other features, helps to control which calls will ring my phone(s): GrandCentral. It allows to define several groups of white-listed numbers with separate response behavior (ring, send to voicemail, etc.) and also includes a couple of different screening options. For dealing with known telemarketers they even offer to play a "number not in service" message, but most auto-dialers can't get past the call screening anyway. It's a free service while in beta, but they promise to keep basic features free indefinitely, including "unlimited inbound minutes, unlimited voicemail (up to 30 days old), and access to all of our core features". This NYT write-up describes a few of the options in more detail.

  33. Re:I've got a new one... Anybody seen this? by Anonymous Coward · · Score: 0

    A local telco around here (Manitoba Telecom Services) had such a feature in the past - if you listened to a busy signal for a few seconds, they'd offer to keep calling that number for you until it rings, and then they'd phone you and connect the calls together (for a coin or two, of course).

    I can't say that anyone would want to pay for that when doing mass calls though; you were probably just hit with a mildly unfortunate coincidence. :)

  34. A tiny little minus to this by xrayspx · · Score: 1

    I was surprised to learn that some towns in my area (verifiably, I'm sure they all do it) have, as part of their emergency response plan (think disaster response, not car-accident type stuff), to call every phone number in the exchange with a recorded message saying "GET THE HELL (IN YOUR CELLAR/OUT OF DODGE/OFF MY LAWN)", that kind of thing, and that they'd used it in the case of a disastrous flood.

    So, if you block your phone with a device, that probably won't work. I have to think that any of the services offered by the phone companies would allow some kind of override for FEMA type stuff, since they're unlikely to ask if you'd like to buy a magazine subscription.

    1. Re:A tiny little minus to this by Lehk228 · · Score: 1

      if you only apply the filter to calls from outside your area code that shouldn't be a problem. if they are in your area code you can drive down and raise hell.

      --
      Snowden and Manning are heroes.
    2. Re:A tiny little minus to this by xrayspx · · Score: 1

      Doing an inclusive whitelist and including the area code would be fine I guess if you're in like 802 or 207, but if you're in 617 or 212, it might suck. But yeah, should work as long as the local automated dialer thing the emergency services use sends correct CID info. I get a lot of stuff from my local area code (firefighters, cops) that I'd just as soon block.

      But yeah, good point, if it's granular enough for the user to allow specific phone numbers, it should be easy to do 617*

  35. Have done it for years by scuba_steve_1 · · Score: 1

    At the risk of being modded redundant...I have done this for years...and it is not that tough...but it can be mildly frustrating for friends.

    My last two mobile phones have allowed me to transfer someone directly to voice mail if the number from which they are calling is not in the phone's address book. This works well for me because I do not have a home phone...and I have a fairly complete address book.

    So after years of use how does it fair? Great for me...less so for others...but they deal. When they are not at home, my friends tend to call me from their cell phones rather than an office phone, since the latter often yields an unknown number from larger corporations...and sends them directly to voice mail. If for some reason they cannot call from a known number, they know that if they leave a message, I will call them right back...assuming that I am available.

    One other downside - I need to remember to disable the filter function if I have a scheduled delivery or service person coming to my home...since they often call to confirm immediately before arriving.

    Honestly though, dropping the home phone and using a mobile phone exclusively has helped significantly, even when I temporarily disable the filter, since I am not listed in any directories.

  36. Asterisk / Open PBX with voice menu by linuxn · · Score: 1

    You can setup a voice menu which will stop the phone from ringing unless a menu option is selected. Check LinuxJournal site they have a few tutorials about setting up similar scenarios ( like http://www.linuxjournal.com/article/9190 )

  37. Re:Fax switch & answering machine by Technician · · Score: 1

    Whitelists will prevent
    1. your stranded grandma from calling you
    2. friends calling from their friends house
    3. that cute girl you just met
    4. various official phone calls that you really needed to receive

    Luckily, whitelists will still allow your mom to call from upstairs when dinner is ready.


    I use a programmable fax switch. A cold call goes to the answering machine. A fax tone goes to the fax. A dialed 22 at the answering machine rings the phone on port 3. My friends and family know to buzz me if the machine gets it.

    --
    The truth shall set you free!
  38. A Solution by Anonymous Coward · · Score: 0

    1. Buy A Series 40 Nokia Phone
    2. Set a silent ring tone (note, not turn off sounds completely) on a personalized profile - ie a recording of no noise.
    3. Set a ring tone on all those people you wish to be alerted to.
    4. Set a timed profile so the personalized one only comes on after a certain time in the evening.
    (make sure vibrate is off in this profile too)

    Now, your phone will only ring in the night if it is from certain important people.

  39. Speakeasy VOIP by illegalcortex · · Score: 1

    The software that speakeasy uses for VOIP has a selective acceptance feature. You can enter phone numbers or digit patterns for the whitelist.

    Kinda pricey for VOIP, though.

  40. Ringback? by Anonymous Coward · · Score: 0

    In the UK we have a service called Ringback, if you try to call someone and they're engaged, you can press 5 to request a ringback. As soon as they hangup, your phone rings (a different ring to indicate the ringback) and when you pickup you're conencted to them as if you had just dialled their number. The result is that often people's phones ring as soon as they hangup.

  41. 632 "area code" by Lookin4Trouble · · Score: 1

    To the original submitter - I get these calls all the time. That particular code is not an area code, but a country code. 63 = Philippines , while 2 is the City code within the Philippines for Manila, it's also the city code for all of the cell phones in the country. Hope this helps!

  42. Whitelist via Ringer ID by lunchlady55 · · Score: 1

    Set the default ringer to a silent mp3/wav/ogg/3gp/whatever. Set everyone in you address book to a "Custom Ringtone" (on my razr it's called Ringer ID) that is your regular ringtone.

  43. GrandCentral.com by Some+guy+named+Chris · · Score: 1

    Check out GrandCentral.com. They allow you to blacklist, whitelist, set up different voicemail greetings for different people, and whatnot.

    My favorite feature is that you can transfer calls between any of your phones. So, if I'm on my cell and the battery is about to die, I just hit * and all my other phones (home, work, etc) start ringing. I pick up whatever phone is closest and I'm back to talking.

  44. Oblig. by Anonymous Coward · · Score: 0

    YMBNH

  45. Prevent telemarketers from the to start! by denis-The-menace · · Score: 1

    Andy Rooney, CBS Newsman
    Tips for Handling Telemarketers & JUNK MAIL

    Three Little Words That Work !!
    (1) The three little words are: "Hold On, Please..."

    Saying this, while putting down your phone and walking off (instead of
    hanging-up immediately) would make each telemarketing call so much more
    time-consuming that boiler room sales would grind to a halt.

    Then when you eventually hear the phone company's "beep-beep-beep" tone,
    you know it's time to go back and hang up your handset, which has
    efficiently completed its task.

    These three little words will help eliminate telephone soliciting.

    (2) Do you ever get those annoying phone calls with no one on the other end?
    This is a telemarketing technique where a machine makes phone calls and
    records the time of day when a person answers the phone.

    This technique is used to determine the best time of day for a "real"
    sales person to call back and get someone at home.

    What you can do after answering, if you notice there is no one there, is
    to immediately start hitting your # button on the phone, 6 or 7 times, as
    quickly as possible. This confuses the machine that dialed the call and it
    kicks your number out of their system. Gosh, what a shame not to have your
    name in their system any longer!!!

    (3) Junk Mail Help:
    When you get "ads" enclosed with your phone or utility bill, return these
    "ads" with your payment. Let the sending companies throw their own junk mail away.

    When you get those "pre-approved" letters in the mail for everything from
    credit cards to 2nd mortgages and similar type junk, do not throw away the
    return envelope.

    Most of these come with postage-paid return envelopes, right? It costs
    them more than the regular 37 cents postage "IF" and when they receive them back.

    It costs them nothing if you throw them away! The postage was around 50
    cents before the last increase and it is according to the weight. In that
    case, why not get rid of some of your other junk mail and put it in these
    cool little, postage-paid return envelopes.

    One of Andy Rooney's (60 minutes) ideas.
    Send an ad for your local chimney cleaner to American Express. Send a
    pizza coupon to Citibank. If you didn't get anything else that day, then
    just send them their blank application back!

    If you want to remain anonymous, just make sure your name isn't on
    anything you send them.

    You can even send the envelope back empty if you want to just to keep
    them guessing! It still costs them 37 cents.

    The banks and credit card companies are currently getting a lot of their
    own junk back in the mail, but folks, we need to OVERWHELM them. Let's let
    them know what it's like to get lots of junk mail, and best of all they're
    paying for it...Twice!

    Let's help keep our postal service busy since they are saying that e-mail
    is cutting into their business profits, and that's why they need to
    increase postage costs again. You get the idea !

    If enough people follow these tips, it will work ---- I have been doing
    this for years, and I get very little junk mail anymore.

    --
    Obama's legacy: (N)othing (S)ecure (A)nywhere and (T)error (S)imulation (A)dministration
  46. Re:I've got a new one... Anybody seen this? by LMacG · · Score: 1

    It's just coincidence, dude. What if the call had come in exactly two minutes and twelve seconds after you hung up, would that make you suspicious? Or two hours, fourteen minutes and six seconds?

    Doesn't that tinfoil hat interfere with the cordless phone reception?

    --
    Slightly disreputable, albeit gregarious
  47. donotcall.gov by bigbigbison · · Score: 1

    If you are in the USA there's no reason to be getting telemarketing calls. donotcall.gov will take care of that.

    --
    http://www.popularculturegaming.com -- my blog about the culture of videogame players
  48. Caller ID Manager by j00r0m4nc3r · · Score: 1

    I have one of these. They work great. Granted it works on a blacklist instead of a whitelist, but the blacklist gets populated pretty quickly and I've found that I don't need to add entries very often at all. You can hook up an answering machine, and any "blocked" calls can get sent directly to the answering machine without ever ringing the phone. You can block with wildcards, so entire area codes, certain prefixes, ranges, etc.. It's really very nice. I paid like $100 for mine.

  49. Easy with many cell phones... by reanjr · · Score: 1

    Change your default ringtone on your cellphone to silent. If it doesn't support it directly, get a silent mp3 file or whatever your phone supports. Then change the ringtone for your whitelist numbers to something audible.

  50. and if you're in the UK... by IndieKid · · Score: 1

    ...the Telephone Preference Service http://www.mpsonline.org.uk/tps/ are the people to get in touch with.
    I registered with them a few years ago and haven't had any marketing calls since.

  51. Mobile phones by A-Rex · · Score: 1

    A lot of mobile phones (like my old Sony Ericsson P910i) have a whitelist option, and where I live, mobile phones are a viable alternative to landlines. For some, it's cheaper having only a mobile phone and no landline (at least here in Norway). Tough competition really seems to drive the prices down. For instance, recently many mobile phone subscriptions have become available where you get 120 minutes and 90 text messages for free every month. (No monthly fees or such either. They make money on calls to other countries, MMS, special service numbers etc.)

    1. Re:Mobile phones by lhaeh · · Score: 1

      Wow. I knew phone rates here in North America were artificially inflated, but I had no idea it was that bad.

  52. Simple bash script by samjam · · Score: 1

    I did it with a simple bash script and a modem.

    http://www.liddicott.com/~sam/?p=26

    Sam

  53. Privacy Corps Call ID Manager by Larry+Lightbulb · · Score: 1

    We got one of these a few months ago and I think it will do everything to original poster wanted. You can set white and black lists of IDs, then set the device so that it'll allow everything, or only those on thr whitelist, or only block those on the blacklist; with an option for special handling of calls which don't show an ID, and for dealing with a block of numbers from the same area.

    Adding IDs can be as simple as waiting for them to call you and pressing a button.

    You can also set a quiet time where all calls are blocked.

    The only downside we've found is that because of where the box goes in the chain of devices you can no longer see the caller ID on the telephone.

  54. I have *two* nightstands by Anonymous Coward · · Score: 0

    And they can't make phone calls, you insensitive clod!

  55. Phones? Try mail by Anonymous Coward · · Score: 0

    Screw phones, I want a whitelist on my postal mail.

    Every day, my mailbox is filled to maximum with mail for the 10 people who lived in my apartment before me. I'd rather only get mail from family and bills.

  56. cell phone options by qux.net · · Score: 1

    It sounds like you may be using a landline, but just in case... The last few Motorola phones I've used have an an option under security to restrict incoming calls. One of the options is "Contacts", which allows calls from anyone in the contacts list to come through, but sends all other calls straight to voicemail. I'm guessing most other phones have a similar or semi-equivalent option (on a Nokia I did it by setting a default ring of nothing, and then all contacts to the ring I wanted - it still "rang" and the caller had to wait to get to voicemail, but didn't bother me with the call). It's effective, easy to change even for temporary numbers, and in an emergency anyone can leave a voicemail (never had a telemarketer do so, only legit interactions).

  57. discretion for cell phones?:Asterisk / Broadvoice? by cs · · Score: 1
    He may refer to a landline, but I'm not. I don't have one. I would be very interested in a mobile phone that implemented whitelists. I'd also be interested in a phone company that mentioned the caller-id (or lack) in the "you have voicemail" SMS message it sends me:-(

    While I'd like a phone that was pretty flexible about whitelists (eg times) I'd be happy with switchable profiles like the common "silent" etc choices one has. I fear that certain things are done too far upstream - it would be nice if the phone could decide to answer/voicemail/reject/forward a call, but I think the phone company stores a braindead profile for you, producing an architecture hardwired bustedness. Hmm, surely modern phones can run a voicemail system internally these days?

    Of course, I don't want a beefy and expensive modern phone - I've been using a Nokia 6100 for quite a while because it's Just A Phone and small and light. No cameras, video etc. Being a geek what I really want is a tiny real computer (eg like a Soekris but lighter) with a phone and display/keyboard as separate Bluetooth peripherals of some kind.

    --
    Cameron Simpson, DoD#743 cs@cskk.id.au http://www.cskk.ezoshosting.com/cs/
  58. Re:I've got a new one... Anybody seen this? by toddestan · · Score: 1

    Well, the non-conspiracy way to look at it is to program the robo-dialer that if it gets a busy signal, to keep redialing that number until it connects (logic being of course that a phone with a busy signal is being used, thus the mark on the other end is present and near the phone). Also, you will sometimes get this behavior with call waiting - if someone is trying to call you when you hang up the phone, it will immediately start ringing.