Incomming Faxes -- Is There a Way to React to Different Ringtone?

I have only used my fax setup to send faxes because I didn't have a second line and didn't want to get into messing with our home phone and voicemail.
But ... as part of our phone package we have a second number on the same line that rings with a different pattern -- two short instead of the normal ring.
Is there a way to tell the computer to answer as a fax machine if the broken ring calls but leave normal calls alone?
Or any other simple solution so we can receive inbound faxes?
Thanks

Yes there is, but you have to get your hands dirty in Terminal.app to do it. It's really easy though. In Tiger, log into an administratively privileged user account. Launch Terminal.app (in the /Applications/Utilities folder). First off, make a backup of the original file that you are going to edit. Type:
sudo cp -pv /usr/bin/fax /usr/bin/fax.original 
and press the return key. Enter your admin password. It will not be echoed back to you as you type it. Hit return key when finished.
Next, launch the "pico" text editor. Pico is a simple command-line text editor, very similar to the old DOS Edit program if you're old enough to remember that. So type:
sudo pico /usr/bin/fax 
You are looking for a line that reads,
INIT="-iZ -i&FE0&D2S7=120" 
at least that's how it reads in the Leopard version. I think the Tiger version had an extra parameter on that line, so that it read,
INIT="-iZ -i&FE0&D2S7=120 -i&C0" 
At any rate, the line you are looking for is going to be very close to one of these two lines. You use the arrow keys to manuever around in the file, and you can also use control-v to page down and control-y to page up, as is shown in the bottom of the pico window.
You need to edit that line to read as,
INIT="-iZ -i&FE0&D2S7=120 -i&C0-SDR=2" 
That "-SDR=2" sets the distinctive ring pattern for the fax to only answer on the second ring pattern, not the first.
Now do a control-x (^X) to exit the pico application, answer the "save modified buffer" question with "y" (for yes), and depress the return key to save (overwrite) the original filename. You may have to reboot to make the change to become effective. I don't know for sure, I always did just for grins and chuckles.
It is not likely that there ever will be any more Tiger updates to 10.4.12 and beyond, but if there were, my experience had been that said updates blew away the modified /usr/bin/fax. So you may want to keep a backup lying around. If you do, then type:
sudo cp -pv /usr/bin/fax /usr/bin/fax.distinctiveRing 
If you type:
ls -l /usr/bin/fax* 
you will see all three of these files in the /usr/bin directory.
You're finally finished, so ⌘q Terminal, and, like I said, reboot your computer just to be sure the modifications take hold.
I have been successfully running this setup for years, first with Tiger and then with Leopard, on my 2001 Quicksilver G4 computer. I set up fax preferences to answer after the second ring (gave me adequate time for me to recognize an incoming call as ringing in on the fax number so I wouldn't rush to the phone to answer it), and it coexists nicely with my PhoneValet 5.4.2 (voice mail and call logging) that rolls to voice mail after (user-configurable in PhoneValet) seven rings on the primary number.
I should caveat all of this by saying that I am assuming that your computer has a built-in modem and not something dangling off the back of your computer via USB cable or something. Long ago, a person posted that they were having issues with doing the above stuff that I have described with what I recall to be an external modem and Tiger OS. He was able to work around it by making several edits to that same /usr/bin/fax file but they were way different than the edits that I describe above, and he had to play around with finding the correct numeric values for some of the parameters that he was editing. But he did get it to work.

Similar Messages

  • Is there a way to consolidate two different Apple ID's into one. I have an old Apple ID that I used for Itunes and a new I used to set up my iphone.

    Is there a way to consolidate two different Apple ID's into one. I have an old Apple ID that I used for Itunes and a new one I used to set up on my iphone.

    You cannot merge accounts.
    Why did you start a new account?

  • Is there a way to have two different iTunes for two different iPhones on one Windows User account?

    Using Windows 7, iphone 4.
    I've read as many threads on these forums and as many kb's as I could find, but I sttill can't figure it out. I have 2 iPhones. Let's call them, "wife" and "hubby". I want to have two separate iTunes, one for each of the phones. Hubby is the Windoows User. I don't want to set up a different Windows User for wife.
    Hubby was the original iPhone. When I plug it in, iTunes recognized it has Hubby's iPhone. Then I unplug Hubby and close iTunes. I plug in Wife but iTunes stll comes up with Hubby under Devices and syncs Hubby's iTunes to Wife's iphone.
    I've tried using the shift key when I open iTunes to set up two separate .itl files to no avail.
    Is there a way to have two different iTunes for two different iPhones on one Windows User account?
    Thanks!

    What happens if you rename the iPhone "Wife" when it shows up as "Hubby", then choose a different set of apps/playlists to sync with? iTunes is supposed to be able to manage multiple devices, each with their own selection of content. Perhaps you "restored" "Wife" with a backup from "Hubby" when you first set things up which is now causing confusion.
    To create a new library press and hold down the shift key as you click the icon to start iTunes and keep holding shift until asked to choose or create a library. You need to use the same technique to switch back.
    tt2

  • Is there a way to order several different iPhoto projects at one time, on the same order? (to avoid paying shipping on each individual project?)

    Is there a way to order several different iPhoto projects at one time, on the same order? (to avoid paying shipping on each individual project?)

    No, unless they're all prints.
    (117535)

  • When using the built in web server, is there a way to specify a different

    When using the built in web server, is there a way to specify a different error handler when you try to access a NON .CFM file? Right now I get the standard:
    java.io.FileNotFoundException: filename.ext
    Is there any setting to override this and direct the message to your own .cfm template? The missing template handler in the CF Admin work only for .cfm files.
    Thx

    The in-built web server for ColdFusion 8 is JRun. I am on ColdFusion 10, however, and so cannot offer hands-on advice. (CF10 replaced JRun with Tomcat.)
    My guess is that you have to modify the file {CF_ROOT}/WEB-INF/web.xml. Don't forget to create a back-up first!
    You may then proceed as follows.
    1) In the ColdFusion root (CF_ROOT), create the file myCustomFileNotFound.cfm. Give it some content, like
    My custom File Not Found page. Current time: <cfoutput>#now()#</cfoutput>
    2) Open the file {CF_ROOT}/WEB-INF/web.xml in a text editor. Add the following error-handling specification just before the end tag </web-app>:
    <error-page>
    <error-code>404</error-code>
    <location>/myCustomFileNotFound.cfm</location>
    </error-page>
    Save the file web.xml.
    3) Restart ColdFusion. Test by browsing to a URL requesting filename.ext

  • Is there another way to open a different iPhoto library?

    Is there another way to open a different iPhoto library besides using the option key and clicking on the iPhoto icon? It takes me upwards of a dozen times to get it to work, so I get that screen where I choose which library I want to open - the option key usually just doesn't respond. And since it takes several seconds for my main iPhoto library to shut down everytime it incorrectly opens up, it ends up taking me upwards of a few minutes, and a lot of frustration, by the time the option key suddenly decides to randomly work and I can choose the other library I want. This is iPhoto '09, version 10.6.8, by the way.
    Thanks!

    Of course I understand about double-clicking. but how can I double-click to choose the name of the iPhoto library I want when I cannot reliably get the menu option screen listing my two libraries to come up. As far as where the two libraries are actually stored on my computer, I haven't a clue - I just created the libraries on that iphoto library menu screen at some point in the past when I was setting it up. Is there some other place I could navigate to via Finder to select the library I want? I just don't think I need to spend $20 on software that I don't need - if I has lots of libraries, sure, but most of the time I use just the one library. But it's driving me crazy that when I do switch, I m having such difficulty.
    Thanks :)

  • Is there any way to set a music ringtone as a text

    is there any way to set a music ringtone as a text

    Currently the iPhone does not support customized text tones--only the choice of those included in iOS.
    This will change in the fall with iOS 5 when customized text tones will be supported.

  • If I have multiple accounts in my mail on a macbook, is there a way to separate the different accounts like in two separate tabs?

    If I have multiple accounts in my mail on a macbook, is there a way to separate the different accounts like in two separate tabs?

    I can't think of a way to show them in tabs, but Mail lets you open as many Mail list windows as you like. Set the Mail window to show just the inbox for Account A, then choose File/New Viewer Window and set that window to show just the Account B inbox. Arrange the windows next to each other.
    I open multiple viewer windows all the time when dragging messages from inboxes to various folders, it saves a lot of time.

  • Pages for iPad2. Regarding headers, is there a way to have a different first page in a document?

    PAGES for iPad2...Regarding headers, is there a way to have a different first page in a document?

    I don't think that iBooks offers animation for page turning pdfs. But all iOS devices use gestures for turning pages etc.
    iBooks in Mavericks is turning out to be as big a pain as iWork in Maverick.
    http://www.gottabemobile.com/2013/11/16/apples-ibooks-mess/
    Peter

  • Is there a way to create three different physical calendars in ical so that I can get a fiscal view of the calendars?

    Is there a way to create three physically different calendars in iCal so that I can view the calendar and events from a fical point of view?

    iCal just shows the calendars you have created in your account(s).  So if you are using iCloud just log into your iCloud account in a web browser and make as many new calendars as you wish to have.  Then enable those in iCal.
    If you use Google accounts or something else for the calendars, then create them as needed, and enable them in iCal.
    I have several separate calendars all displayed in iCal - a couple linked through my Gmail accounts, and one through my iCloud account.  Each uses a different default item color so they are distinct in iCal.

  • Project Web App (PWA)/Sharepoint 2013: is there any way to display two different views of the Project Center PWA web part to the same user in a site collection?

    i want some of my users to see all the projects in the Project Center at my top-level site, and those same users to see only the projects they own at a subsite level in Project Center. that way they could see an 'all project' view on the homepage and only
    their projects on their dashboard pages (which also have an instance of Project Center web part on them). i have searched and searched but cannot find a solution to this. is there any way to acheive this functionality? thanks in advance for your assistance!

    I have tried this in the past, but was not successful, as far as I can recall. Once you access the project center webpart in one page, the view will be retained regardless where you see it again. (until you apply a different view or clear your browser cache). 
    May be an easier solution is to display a 'report' on the home page with ALL projects (much easier to do), and use the Project Center webpart for the My projects view as it is easier to achieve via Project Server Security, than a report.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Is there a way to use a different slideshow on all iWeb Photo pages?

    I am getting real tired of the iWeb slideshow. Hard to adjust the timing, scales automatically even when you don't want it to, etc...
    I did some searching on this site and a few people, such as Old Toad are mentioning SimpleViewer or Jalbum. But it sounds like it has to be setup individually for each page by modifying the html file in idisk/resources, etc...
    While that would be fine for just a few pages,I have a photo blog with about 20 pages that are constantly been updated and more are added each week. I would like to be able to automatically change the default iWeb slide show to something better like Jalbum. Is there a way to do that by simply adding an html snippet on each page in iWeb directly? And if so, what would that code be for the Bananalbum as shown on OT's demo page?
    Thank you very much indeed.
    Bo

    Hard to adjust the timing
    that can be changed: http://discussions.apple.com/thread.jspa?messageID=5199553
    if you use iweb blog/podcast/photos and album templates then you need to know that they are rendered by javascript/AJAX... so you can use javascript/AJAX to alter them, slideshow and what not.
    Here are some of my examples:
    http://www.cyclosaurus.com/iWeb3Widgets/Lytebox/Photos.html
    http://cyclosaurus.com/iWeb3Widgets/Highslide/PhotosPage.html
    http://cyclosaurus.com/iWeb3Widgets/Couloir/Photos.html
    they were built in iweb with my widgets, no pre-processing, no post editing, no flash.

  • Is there a way i can get my ringtones back that were not synced

    is there a way i can get my purchases ringtones back that were not synced to my computer

    yes go to expresslane.apple.com
    file a case with the itunes store they will either give you a credit so u can redownload or enable you to be able to download them again

  • Is there a way to adjust volume of ringtone BEFORE downloading it?

    I downloaded a ringtone last night to my iPhone. Everything went smoothly but find that the ringtone is way too low for me to hear when it rings... is there any way to adjust this before I download it? Let me just say that otherwise the volume on my iPhone is perfect - I have never had a problem with this just with this ringtone in particular. I have try to go to the info of this particular ringtone and i can see a volume adjustment under the heading Options but it is gray - anyway to make it active? Any info will be appreciated. thanks.

    Ditto, the ringtone I created is unusable, as it is too quiet. There does not seem to be an option to increase the volume. Even if I set the ringer volume all the way up I can bearly hear it. Admittedly it is a relatively quiet segment of the track I used, but surely the ringtone should auto adjust its volume?
    The preview on my MacBook sounded great, on the iphone with it sat in the dock, I barely even noticed it was playing.

  • Is there a way to make two different text fields be "either or" like a "yes no" check box?

    I'm have Acrobat 9 Pro on a Mac running Yosemite.
    I have two text fields that each are formatted to have a number entered, but the user chooses which to fill out — either "number of weeks" OR "number of months" (two separate text fields). I don't want them to fill out both fields, only one of them.
    Is there a way to set up these two text fields so that only one can be filled out? (Sort of like when you have a "yes" and "no" check the box field, you name them the same but have different export values?)
    Thanks for any help provided.
    ~ bexterinni

    Only by custom JavaScripting.

Maybe you are looking for

  • Can I return My IMac to exchange it for a Macbook Pro?

    I have had a IMac 27 inch since march and it is the newest one. I dont like it, so can i return it for a macbook pro? I have the receipt and everything that it was bought with. Please let me know, because im going to the apple store soon!

  • Bursting Reports via email with seperate email address for each page

    I have been reading "Oracle® Application Server Reports Services Publishing Reports to the Web" (most specifically chapter 15 Creating Advanced Distributions) trying to figure this out but still having difficulty getting my head around it. I am tryin

  • Games on iPad air playing on 1/4 screen

    Hi I just got the new iPad air and downloaded a few games which only seem to be playing in quarter of the screen (on the bottom left) when they are full screen games eg real racing 3 I can't understand if this is to do with my settings or just game c

  • [Help]PT 8.51 pscfg.exe config Issue

    Hello, Recently, I just install a PT 8.51 system on the same box (a Virtual Machine). (Platform: Win2008R2x64, MSSQL2008R2, PT8.51 Media Pack, HRMS 9.0) Everything works fine, but just the pscfg.exe configure issue for Application Designer to launch.

  • Data binding with Multiple Filter

    Hi Experts, I am trying to do the data binding using filters with multiple values. ex: I am selecting the multiple values from list dialog and those i want to pass to odata service as a filters. name : abc                pqr I am looping on above and