Feature request: Allow direct connections for contacts only

Hello, on Windows there is an option "Allow direct connections to contacts only" as described on http://en.kioskea.net/faq/32357-skype-hide-your-ip-from-people-who-are-not-on-your-contact-list. Many people including myself would like to see this feature implemented in the Linux client. There are solutions to protect the IP from resolvers like setting up proxies. However, the performance of free SOCKS-proxies is mostly very bad. VPNs with an appropriate bandwidth also cost an amount of money and additionally, it is difficult to only route Skype traffic through a VPN. Setting up a VM with Windows or WINE just to run Skype is an overkill as well. I consider it inconvenient that this feature is implemented on Windows while - in my opinion - mainly Linux users being aware of security might be in need for this feature. Therefore, I request to implement such a functionality into the Linux client. Kind regards from Germany

If  you want to enable that feature on a Skype client that does not offer it in the GUI you would have to do it manually.  You can follow the guidance here and the same information applies to the Linux client and any other client you have root or file-level access to. http://community.skype.com/t5/Modern-Windows-from-Windows/Windows-8-IP-Hiding/m-p/2876437/highlight/true#M19476 Linux path:/home/Username/.Skype/YourSkypeName/config.xml

Similar Messages

  • Feature Request - Allow direct editing of hidden OCR text to correct errors

    Examining an OCR-scanned PDF allows the OCR plain-text results to be "previewed," but in a read-only format.  We need to be able to edit this text to correct the inevitible errors.
    I just scanned a document, and the results are mosty OK, but there are two lines that are complete garbage.  I personally have never performed a completely error-free OCR scan in Acrobat or anywhere else.  Editing the image text is no solution, especially if the font is unavailable.
    Other OCR-enabled apps I have worked with expect you edit the results.  Acrobat should too.

    If Adobe won't do it, maybe somebody else will.  Nuance.com specializes in OCR, among other things.  They've also got a PDF converter.  Maybe they'll recognize the value of marrying the two.

  • Allow direct connections to your contacts only not working properly

    So basically whenever I mark the box next to allow direct connections to your contacts only and hit save it stays like that until I relog, however when I relog the box isn't marked for some reason. I don't want to get booted anytime soon so any help would be appreciated. I don't have Skype on my phone or anything else, just my computer.

    Same issue here. The strange thing is that it affects exactly the same contacts on all my devices (iPhones, iPads, MacBooks and iMac): I have 189 friends on Facebook and only 23 are syncing. So it is likely that the issues is caused on the Facebook side.
    I also tried to update the Facebook contact information. The amount of updates is weird: it goes from 100, 102, 2 to 1 contact(s) updated, while only 23 contacts are syncing?
    Kind regards,

  • For Contacts only is not working properply

    My friend and I were testing the settings and security of Skype. We both clearly marked and saved For Contacts only for communication and avatar and any other. I blocked my friend and removed her from the contact list and ensured she was on the block list. She did the exact same thing. However, when I did a search on her name, her picture avatar and her information immediately came up but with a red circle but I can still see her info and picture. I went back and cleared the cache and ran another search and the same thing happened and vise versa. How is this possible? Both of us have saved on contacts only but she can still see my avatar and vise versa. I did not need to share information because I can have it along with her picture. When I added her name back to the contact list the only difference it made was that I cannot communicate with her until she unblocks me but I still can have her picture, name and all of her information on my contact list. What's really odd if I select any other random name, I cannot gain their information or picture. Does Skype store original request friendship add-on agreement? The version of Skype that I have is 7.3 

    use NOT operator so it would be "NOT refinablestring:something"
    kashif

  • Feature Request: Disable report-level sums if only break-level sums needed

    Hi,
    With all my success earlier in reporting a bug and getting it fixed in the same day I thought I might try my hand at a feature request and see how I get on.
    Would it possible to have the option to turn off the report summary record when summing on a break column?
    There are times when you just want one level and not both. I know there is a trick using javascript to hide the summary row but its pretty unfriendly and the javascript shows up in Excel when the report is exported.
    Also, I'd quite like to be able to put the sum column value in the description for the summary. At the moment you can only include the header using #SUM_COLUMN_HEADER# but #SUM_COLUMN_VALUE# would also be useful.
    Keep up the good work - Apex rocks!
    Thanks,
    Alastair

    - ability to choose deletion of an email on handset only
    - desktop software working with all older BB's allowing drag and drop type of transferring data, contacts etc. (BB link doesn't recognize my old Storm) 
    - auto power on/off
    - contacts syncing with yahoo & Outlook (almost two weeks trying to work around it and no luck)

  • Feature Request | Allow custom metadata per table/column to be stored

    Someone please correct me if there's already a feature that allows this...
    I'd like to see a feature where you can define a set of metadata that can be stored per table / column, and perhaps a trigger that updates that metadata.
    As a use case, it is sometimes necessary to find out how many records exist in a table, and the typical way of doing this is by running a statement like select count(*) from example_table;. With a large table, this statement might take a long time though, and certainly has overhead associated with it. If this is something that's done on a regular basis, like maybe even once every minute, wouldn't it be much better to store this number as metadata for the table that can be updated on inserts and deletes and then can be queried? It might involve extra overhead on an insert or delete statement to add to or subtract from this number, but then for some applications the benefit of getting the count quickly might outweigh the extra overhead.
    Another use case is finding a minimum or maximum out of a table. Say you store a date and you need to find the max value for some feature in your application; with a large table, and especially if its a date with accuracy to the millisecond where an index wouldn't help much because most values are unique, it can take quite a bit of time and overhead to find that max value. If you could define for that column that you'd like to store the max value in metadata, and could query it, it would be very quick to get the info. The added overhead in this scenario would be on insert, update or especially on delete, the value would have to be updated. But in some applications, if you don't expect alot of deletes or updates on this column, it might be worth the added overhead to be able to quickly find the max value for this column.
    I know you could probably make a separate table to store such info, and write triggers to keep it up to date, but why not have a built in feature in Oracle that manages it all for you? When you create a table, you could define with the column definition something like 'METADATA MAX' and it will store the max value of that column in metadata for you, etc.
    I know that the overhead of this feature wouldn't be good for most circumstances, but there certainly are those cases where it would be hugely beneficial and the overhead wouldn't matter so much.
    Any thoughts?
    Can this be submitted as a feature request? Am I asking in the right place?
    (p.s. while you're at it, make a feature to mimic IDENTITY columns from SQL Server!)

    I don't think what you mentioned is exactly what I was talking about. There's no min_value or max_value in the dba_tab_columns table; there's only high_value and low_value, and they are stored in binary. And I believe to be accurate in the use cases that I suggested, you would have to analyze the table after every insert/update/delete. So no, that's not the same feature I've asked for, although I appreciate the feedback.
    Also, the num_rows in dba_tables relies on the table being analyzed too, so for a table that stores temporary date to be processed where you want to know the size of the queue every few seconds, it wouldn't make sense to analyze the whole table every few seconds when all you want is a count of the records, and it's also inefficient to use the COUNT function with every query when it would be much faster to store the count in some metadata form that is updated with every insert or delete (adding to a count and subtracting from a count with each insert/delete is WAY faster than analyzing the table and letting it literally recount the entire table every time).
    So again, while I appreciate the feedback, I don't think what you mentioned addresses either of the use cases I gave. I'm talking about a different kind of user defined metadata that could be stored per table/column with rules to govern how it is updated. Not you standard metadata that requires an analyze and isn't real time. I also only gave a few use cases, but the feature I'm really looking for is the ability for users to define many different types of custom metadata even maybe based on their own logic.
    Again, this feature could be implemented right now by creating a USERMETADATA table for every standard table you have, and then using triggers to populate the info you want at the table level and column level, but why do that when it could be built in?
    Also, I don't really agree that having to create a trigger/sequence for every table instead of setting a column as IDENTITY is better. It's cumbersome. Why not build these commonly used features in? It can create a trigger/sequence behind the scenes for all I care, but why not at least let someone mark a column as IDENTITY (or use whatever other term you want) at the time of table creation and let it do everything for them. But that's off-topic; I meant it for more of a side comment, but should really have a separate post about it.

  • Feature Request: vpn auto-connection on WiFi-connect

    Hello,
    since a short time I use my iPod touch with firmware V2.2 in combination with a commercial vpn-provider.
    My problem now is that the iPod doesn't automatically connect to the vpn server when it establishes a wifi-connection. But as soon as the wifi-connection has been established it automatically retrives new mails and the mail retrieval will be done using a non-secure internet connection.
    This is a big security issue and I can't find a solution for it using the current firmware.
    I hope that it will be considered within a following firmware release.
    Best regards,
    Marcell

    You can send feedback/feature requests directly to Apple at this link: Apple Product Feedback

  • Feature Request: Allow Apps to Access Apple ID User Address

    This is a feature request for new iOS functionality
    If iOS gave permission for apps to access the home or billing address a user has defined when setting up their Apple ID, then I believe the app can use this address to automatically set up the shipping of a purchased item for example. This would enable apps to sell physical goods, paid for by the user's Apple ID and set up for shipping to his Apple ID address, instantly.
    I believe couriers already have SDKs that allow apps to programatically register the pickup and shipment of an item.
    Users can then be able to manage their addresses in iOS/iCloud.

    This will never happen because of the obvious security implications.

  • FEATURE REQUEST: Allow Smart Playlists to sort by Release Date

    I listen to my iPod in my car and have a one of those kits where you can control your iPod through your stock stereo (i.e. select playlists by pressing buttons 1-6, and changing tracks with the next track/ last track buttons). One of my playlists is a smart playlist that looks for all downloaded audio podcasts that have not yet been played. As of right now, I have to go into the playlist after every update and reorder the podcasts manually in order from earliest release to newest release. The only date-sorting column right now is "date added". This doesn't work because if I update and download two or three episodes from one podcast, they all have the same date in that field, even if they were released on different days.
    Please iTunes, allow a column heading that sorts podcasts by Release Date. This would make my life a lot easier and I'm sure I'm not the only one. I know when I'm looking at all my podcasts from the Podcast-Manager portion of iTunes that I can see the Release Date column, however it is not an available column outside of that view.
    Anybody else wanna see this feature?

    I was looking for the exact funtion too. Please don't make our life any harder

  • How do I remove "Allow all connections" for Pando in my firewall settings?

    In System Information under Firewall Settings - Applications, I see the following: com.pando.pando: Allow all connections. However, when I go to System Preferences and look at the firewall options, this is not listed, nor can I find any trace of Pando anywhere else on my computer. Is this hidden somewhere, and how can I get rid of it?

    pirihi,
    open Safari’s Preferences, and select its Privacy tab. For the “Block cookies and other website data” set of radio buttons, select “Never”.

  • Feature request: Slideshow module support for video files

    I'm very excited about your MTS support!
    Feature request: Slide show module  support for video files...
    Say you have 10 takes to choose from. Are you able to almost like SLIDESHOW view the 10 clips full screen so you can decide, like a playlist? Or rate them as they play? It would also be great, like SLIDESHOW to be able to export a MP4 with a title, the 10 clips you are working with, and maybe add an end title and a song, just like SLIDESHOW.
    I have found editing stills like this in slideshow far faster than in any other editing program.
    Basically, I just need a fast means to view or export an MP4 of a set of video clips to review. You are almost there.
    great job!!!
    Max

    I was also disappointed that video is not supported in the slideshow module -I currently have to use another solution when I want stills mixed with videos, would be great to be ablo to keep it all in LR!

  • Feature Request: use volume rocker for brightness

    I find myself wishing I could adjust the screen brightness quickly using the rocker switch currently dedicated to volume. I seldom have need to adjust the volume, and if I did, it would also be helpful is that function could just be part of the open app, leaving the rocker switch to quickly adjust to changing light settings. (the auto brightness basically seems to have two settings: regular and slightly dimmer than regular)

    Welcome to the forums, Tyrade. One of the first things to know is that we're all users here, just like yourself. While you may have a well-thought out feature request, posting it here goes nowhere.
    Submit feedback here: http://www.apple.com/feedback/iPad.html.
    Thanks.

  • Feature Request - CSS code generation for advanced font - type options

    Thanks to everyone for the amazing work done in Photoshop and Illustrator to enhance the ability to generate and use character and paragraph styles translated to CSS. The last two releases have brought designers something they could only dream of and talk about for the last decade, and now these tools are being delivered!
    This request is to consider being able to use advanced character styles in Illustrator, such as X/Y percentage height/width of fonts, rotation or baseline shift to generate CSS for these options. As of this post, I haven't been able to find that CSS3 even supports these options, except possibly the 'font-stretch' rule, which does not appear to be supported yet in most browsers - see CSS Fonts Module Level 3 - W3C Candidate Recommendation, October 2013.
    Sometimes, designers get very picky about wanting type to look just so, including making fonts look taller or wider in a design, although perhaps much to the horror of the original type designer
    thanks very much,
    Mark

    I'll also add this is a feature that should be carried over into Adobe Photoshop too.
    Within Adobe Photoshop if you want to size type in terms of pixels the type is, again, sized according to the Em square. Unless you're setting type at pretty large pixel sizes the rendered type really ends up looking pretty bad. That's because the edge of the baseline and the edge of the cap height line are never aligned to the pixel grid. You end up with type that's fuzzy looking on all sides. If designers were able to tell Photoshop "make this lettering 20 pixels tall according to the capital letters" the lettering would looking a whole lot better. Perfectly crisp edges on the base lines and cap height lines.

  • Feature Request:  Third video output for script

    It would be nice if VC allowed not only full screen output of the master video, but full screen outupt of the teleprompter while still maintaining control.
    This would let somone be the talent, and someone be the director.  If you run the teleprompter inf ull screen mode, it takes away the Director's screen.
    It would mean a lot of memory and three video cards.
    Other features: Ability to do more on the fly - such as run videos, sound, etc with hot keys, Video banks, etc. There are programs meant for church multi media that can do this (but can't chroma key, save video files, etc)

    Great suggestion, I'll check 'em out.  It also seems likely that somebody manufactures a FireWire-powered device that could do the job.  I thought my old ADS PyroAV might work (Standard Def only, of course), but it only outputs a still picture of wherever Final Cut Pro's playhead was last parked.  Crystal-clear video, but it essentially frame-stores and displays whatever still image it last "saw".  Weird, huh?

  • Update issues. says cannot connect to net but it is? Access itunes fine but wont connect for update, only occured when i did update to itunes on computer...help!

    Installe dnew copy of itunes, now cannot update when propmted after plugging in ipod, says not connected to internet. then trie to go itunes, which was fine. computer is connected to net ....
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.1.2
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number 0012AC880C0FDE28
    Current user is an administrator.
    The current local date and time is 2011-07-06 01:02:01.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA GeForce 7025 / NVIDIA nForce 630a
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: f3716be92491fd1a33f7e647a889bf41
    iPodService 10.3.1.55 is currently running.
    iTunesHelper 10.3.1.55 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {BDA8D3FD-3CCE-4BCF-A357-0A51184CF67C}
    Description: NVIDIA nForce Networking Controller - Packet Scheduler Miniport
    IP Address: 192.168.1.3
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Wed Jul 06 00:38:07 2011
    Lease Expires: Thu Jul 07 00:38:07 2011
    DNS Servers: 192.168.1.1
    Active Connection: (none)
    Connected: No
    Online: No
    Using Modem: No
    Using LAN: No
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-07-06 00:56:50.
    diagnostic report. no windows firewall, norton security 2011

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1.3. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
     Cheers, Tom

Maybe you are looking for

  • I get the following error when I deploy to oracle app server 10.1.3

    \jdevstudio10131\jdev\mywork\spneeds1\spneeds1\deploy\ejb3.ear Uploading file ejb3.ear ... Application Deployer for ejb3 STARTS. Copy the archive to /oracle/j2ee1013/j2ee/home/applications/ejb3.ear Initialize /oracle/j2ee1013/j2ee/home/applications/e

  • IMovie 09 import hangs

    24" iMac 2.66 intel Core 2 Duo 4GB RAM I've seen a few archived posts on this with no apparent solution. iMovie 09 is hanging (spinning wheel) during import from a Canon Vixia. It will import a few clips at a time just fine, but if importing more tha

  • Issues with 'next' and 'previous' buttons grayed out in 'Preview'

    First off.. HELLO MAC FORUM!! Woo hoo!! I just got a MacBook Pro and I'm LOVING it.. I'm having one small issue that I can't find help with after googling.. when I'm in 'Preview' viewing pics my 'next' and 'previous' buttons are grayed out and I've l

  • How do I pull a photo from a movie?

    Hi all.  Is there a way to choose a frame from a movie file and turn it into a still photo to edit in photoshop?  Thanks.

  • Ever since start up my computer has being running very slow

    Ever since i started up my OS X Macbook pro today, the first thing that popped up was that my calander had converted to 2001, also my usually automatically connecting wifi was asking for the password. I then noticed how slow my laptop was operating (