MetaMask replaces MIT License, claims ownership of all forks
1–10 of 19 posts
Re: MetaMask replaces MIT License, claims ownership of all forks
#2Re: MetaMask replaces MIT License, claims ownership of all forks
#3Is it similar to this? https://www.cnet.com/news/pulling-back-from-open-source-hard...
Re: MetaMask replaces MIT License, claims ownership of all forks
#4Re: MetaMask replaces MIT License, claims ownership of all forks
#5This isn't legal right? What does this mean and are there other examples? Is it similar to this? https://www.cnet.com/news/pulling-back-from-open-source-hard...
There's generally nothing stopping a copyright holder from ceasing their distribution under an old license, and starting distribution with a new one. However, detaro linked https://github.com/MetaMask/metamask-extension/issues/9285 which brings up that this new license probably violates the license terms of it's GPLv3 dependencies.
Additionally, if they've accepted any pull requests without requiring a contributor agreement assigning copyright to them, they might be trying to relicense code they don't have exclusive copyright over - which AFAIK would make removing the MIT license a violation of said MIT license in that context. (They don't need a license to grant themselves the right to do what they want with their own code, but doing what they want with other people's code is another story.)
Additionally, it's not automatically retroactive - if you've got a copy of the old software (trivial via git) you can presumably still hard fork under the original MIT license terms - it contains no privisos for force-updating the license for anyone who has a copy.
Re: MetaMask replaces MIT License, claims ownership of all forks
#6Re: MetaMask replaces MIT License, claims ownership of all forks
#7This isn't legal right? What does this mean and are there other examples? Is it similar to this? https://www.cnet.com/news/pulling-back-from-open-source-hard...
I am not a lawyer. There's generally nothing stopping a copyright holder from ceasing their distribution under an old license, and starting distribution with a new one. However, detaro linked https://github.com/MetaMask/metamask-extension/issues/9285 which brings up that this new license probably violates the license terms of it's GPLv3 dependencies. Additionally, if they've accepted any pull requests without requiri…
OTOH please correct me if I'm wrong. Law contains many unintuitive things like contracts by handshake and so on :-)
Re: MetaMask replaces MIT License, claims ownership of all forks
#8Re: MetaMask replaces MIT License, claims ownership of all forks
#9Earlier quoted context omitted.
I am not a lawyer. There's generally nothing stopping a copyright holder from ceasing their distribution under an old license, and starting distribution with a new one. However, detaro linked https://github.com/MetaMask/metamask-extension/issues/9285 which brings up that this new license probably violates the license terms of it's GPLv3 dependencies. Additionally, if they've accepted any pull requests without requiri…
Also technically I guess (IANAL) you might have to prove that you obtained the source code prior to the license change. We like to say code itself is licensed such and such, but in reality code is licensed to somebody. If you just place the code somewhere for a month with a license next to it and take it down again, and somebody later comes and wants to get those terms, it's probably too late. OTOH please correct me…
The code was published under a public license, it has been available long enough to garner thousands of commits from over 192 "contributors" (albeit some of whom work for MetaMask), and it has over 1.5k forks. Also, there is no contract.
Re: MetaMask replaces MIT License, claims ownership of all forks
#10Earlier quoted context omitted.
I am not a lawyer. There's generally nothing stopping a copyright holder from ceasing their distribution under an old license, and starting distribution with a new one. However, detaro linked https://github.com/MetaMask/metamask-extension/issues/9285 which brings up that this new license probably violates the license terms of it's GPLv3 dependencies. Additionally, if they've accepted any pull requests without requiri…
Also technically I guess (IANAL) you might have to prove that you obtained the source code prior to the license change. We like to say code itself is licensed such and such, but in reality code is licensed to somebody. If you just place the code somewhere for a month with a license next to it and take it down again, and somebody later comes and wants to get those terms, it's probably too late. OTOH please correct me…
Merely viewing the license/repository does not constitute acceptance of said license (it's not even a clickwrap contract.) While what you can do with the code without accepting said license is quite limited, by publishing publicly to github in the first place they've presumably agreed to Github's ToS, including section D5 ( https://docs.github.com/en/github/site-policy/github-terms-o... ), which at least grants github users the right to view and fork the repository.
Which, presumably, grants users the right to view the repository in it's older states - where I'd argue the old license still clearly applies to the old code. That said, they could always flatten their git history tomorrow or yank the repository outright, which would leave you relying on pre-existing forks.
I'm also less sure about what you can do with old MIT forks of the software if you implicitly accept the new license terms by, say, using the new software. Does "The Program" refer to that exact version? All versions going forward? All versions past future present and in alternate histories?